Skip to content

Commit a945c24

Browse files
committed
Don't limit the printed messages.
1 parent f10c746 commit a945c24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/receive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
print ' [*] Waiting for messages. To exit press CTRL+C'
1313

1414
def callback(ch, method, header, body):
15-
print " [x] Received %.20r" % (body,)
15+
print " [x] Received %r" % (body,)
1616

1717
channel.basic_consume(callback,
1818
queue='test',

0 commit comments

Comments
 (0)