From 2b7007fc1b58f262da707bc3c661158487132fbd Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 2 Nov 2012 10:50:32 -0400 Subject: [PATCH] Use the empty string rendered in blue as the zsig loop avoidance token. (imported from commit 10610b25b006f85b6557592ce73899381b520e3b) --- 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 895ca9d..a770f30 100755 --- a/bots/zephyr_mirror.py +++ b/bots/zephyr_mirror.py @@ -346,7 +346,7 @@ def zephyr_to_humbug(options): process_loop(log) def forward_to_zephyr(message): - zsig = u"%s\u200B" % (username_to_fullname(message["sender_email"])) + zsig = u"%s@(@color(blue))" % (username_to_fullname(message["sender_email"])) if ' dot ' in zsig: print "%s: humbug=>zephyr: ERROR! Couldn't compute zsig for %s!" % \ (datetime.datetime.now(), message["sender_email"])