From 1dba0c0344de3eec4a8028775c396a7733f1a7ae Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 7 Nov 2012 16:36:54 -0500 Subject: [PATCH] zephyr_mirror: Support subscribing to non-ascii Zephyr classes. (imported from commit 85437f09c4738df11208e623db566a9409e501a3) --- bots/zephyr_mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/zephyr_mirror.py b/bots/zephyr_mirror.py index d15b0f0..fc6c0e4 100755 --- a/bots/zephyr_mirror.py +++ b/bots/zephyr_mirror.py @@ -157,7 +157,7 @@ def update_subscriptions_from_humbug(): for stream in streams: if stream in current_zephyr_subs: continue - streams_to_subscribe.append((stream, "*", "*")) + streams_to_subscribe.append((stream.encode("utf-8"), "*", "*")) zephyr_bulk_subscribe(streams_to_subscribe) def maybe_restart_mirroring_script():