From 8641818cf27fc90bea7543e8243ae9a0e6855f7d Mon Sep 17 00:00:00 2001 From: Roy Hyunjin Han Date: Thu, 19 Feb 2015 21:53:14 -0500 Subject: [PATCH] Remove print statement --- TODO.goals | 2 +- socketIO_client/tests/__init__.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/TODO.goals b/TODO.goals index c163d11..09ff239 100644 --- a/TODO.goals +++ b/TODO.goals @@ -1,7 +1,7 @@ Release 0.6.1 #41 #52 Implement on - Get pong + Send pong Change print statements into logging statements Clean up diff --git a/socketIO_client/tests/__init__.py b/socketIO_client/tests/__init__.py index 8143a05..ed194c3 100644 --- a/socketIO_client/tests/__init__.py +++ b/socketIO_client/tests/__init__.py @@ -35,7 +35,6 @@ class Namespace(LoggingSocketIONamespace): self.args_by_event = {} def on_event(self, event, *args): - print 'xxx *** xxx' callback, args = find_callback(args) if callback: callback(*args)