- delete print statement.

This commit is contained in:
Hiroki Ohtani
2012-01-28 15:06:14 +09:00
parent 569fe37336
commit 5d26769909
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
from setuptools import setup
VERSION = "0.5.0a"
VERSION = "0.5.1"
setup(

View File

@@ -592,7 +592,6 @@ class WebSocket(object):
self.sock.settimeout(3)
try:
frame = self.recv_frame()
print repr(frame.data)
if logger.isEnabledFor(logging.DEBUG):
logger.error("close status: " + repr(frame.data))
except: