From 07c190d94b26e3995e8d273dd5636101bb3d0e8a Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 5 Nov 2012 13:00:57 -0500 Subject: [PATCH] zephyr_mirror: Fix syncing instances of class message. (imported from commit dfbbce336145ef6233eab27120a1ccefda055b13) --- bots/zephyr_mirror.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bots/zephyr_mirror.py b/bots/zephyr_mirror.py index 871fe0f..c0c5087 100755 --- a/bots/zephyr_mirror.py +++ b/bots/zephyr_mirror.py @@ -140,10 +140,10 @@ def send_humbug(zeph): # Forward messages sent to -c foo -i bar to stream bar subject "instance" if zeph["stream"] == "message": message['stream'] = zeph['subject'].lower() - message['subject'] = "instance %s" % (zeph['stream']) + message['subject'] = "instance %s" % (zeph['subject']) elif zeph["stream"] == "tabbott-test5": message['stream'] = zeph['subject'].lower() - message['subject'] = "test instance %s" % (zeph['stream']) + message['subject'] = "test instance %s" % (zeph['subject']) else: message["stream"] = zeph["stream"] else: