From 08ba672c3493ff13ef9bd502f4ae29cb02236b0d Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 27 Jun 2013 12:51:56 -0400 Subject: [PATCH] process_user_activity: Fix incorrect format string for unknown event type. (imported from commit 6ca2d1126b61c8f881d5e52478eeef974005757f) --- zephyr/management/commands/process_user_activity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/management/commands/process_user_activity.py b/zephyr/management/commands/process_user_activity.py index f382bfc237..53e9e742ba 100644 --- a/zephyr/management/commands/process_user_activity.py +++ b/zephyr/management/commands/process_user_activity.py @@ -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")