zephyr_mirror_backend: Rename variable 'humbug'

(imported from commit 2e278e4d2452f750cb874510a762fc9616e7dfb3)
This commit is contained in:
Keegan McAllister 2012-12-03 16:20:42 -05:00
parent 25f0eb67bf
commit 0f0ff53527
1 changed files with 6 additions and 6 deletions

View File

@ -130,12 +130,12 @@ def send_humbug(zeph):
return humbug_client.send_message(message)
def send_error_humbug(error_msg):
humbug = {"type": "private",
"sender": options.user + "@mit.edu",
"to": options.user + "@mit.edu",
"content": error_msg,
}
humbug_client.send_message(humbug)
message = {"type": "private",
"sender": options.user + "@mit.edu",
"to": options.user + "@mit.edu",
"content": error_msg,
}
humbug_client.send_message(message)
current_zephyr_subs = set()
def zephyr_bulk_subscribe(subs):