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