mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 17:07:07 +00:00
process_user_activity: Fix incorrect format string for unknown event type.
(imported from commit 6ca2d1126b61c8f881d5e52478eeef974005757f)
This commit is contained in:
@@ -25,7 +25,7 @@ class Command(BaseCommand):
|
|||||||
elif msg_type == 'user_presence':
|
elif msg_type == 'user_presence':
|
||||||
process_user_presence_event(event)
|
process_user_presence_event(event)
|
||||||
else:
|
else:
|
||||||
print("[*] Unknown message type: %s" (msg_type,))
|
print("[*] Unknown message type: %s" % (msg_type,))
|
||||||
|
|
||||||
def signal_handler(signal, frame):
|
def signal_handler(signal, frame):
|
||||||
print("[*] Closing and disconnecting from queues")
|
print("[*] Closing and disconnecting from queues")
|
||||||
|
|||||||
Reference in New Issue
Block a user