You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/02/05 21:34:20 UTC

svn commit: r503858 - /incubator/qpid/branches/qpid.0-9/python/qpid/connection.py

Author: aconway
Date: Mon Feb  5 12:34:20 2007
New Revision: 503858

URL: http://svn.apache.org/viewvc?view=rev&rev=503858
Log:
Removed debug print statement accidentally included in last commit.

Modified:
    incubator/qpid/branches/qpid.0-9/python/qpid/connection.py

Modified: incubator/qpid/branches/qpid.0-9/python/qpid/connection.py
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/python/qpid/connection.py?view=diff&rev=503858&r1=503857&r2=503858
==============================================================================
--- incubator/qpid/branches/qpid.0-9/python/qpid/connection.py (original)
+++ incubator/qpid/branches/qpid.0-9/python/qpid/connection.py Mon Feb  5 12:34:20 2007
@@ -113,7 +113,6 @@
         garbage += chr(end)
         end = c.decode_octet()
       raise "frame error: expected %r, got %r" % (self.FRAME_END, garbage)
-    print "==== FRAME ", frame
     return frame
 
 class Frame: