summaryrefslogtreecommitdiff
path: root/examples/simple_eventlet_send.py
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2015-07-13 12:22:16 -0700
committerAsk Solem <ask@celeryproject.org>2015-07-13 12:22:16 -0700
commit4ef2f10e15a784de56dcd290d60229020ab11090 (patch)
tree417106713d6886466a8e734b53493a966ab9896f /examples/simple_eventlet_send.py
parentd1decb5033fffc12cbd370b483ce81bbe6e42bc4 (diff)
downloadkombu-4ef2f10e15a784de56dcd290d60229020ab11090.tar.gz
Single item tuples no longer require whitespace
Diffstat (limited to 'examples/simple_eventlet_send.py')
-rw-r--r--examples/simple_eventlet_send.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simple_eventlet_send.py b/examples/simple_eventlet_send.py
index c2b3690d..6c3ef003 100644
--- a/examples/simple_eventlet_send.py
+++ b/examples/simple_eventlet_send.py
@@ -28,7 +28,7 @@ def send_many(n):
with connection.SimpleQueue('kombu_demo') as queue:
def send_message(i):
- queue.put({'hello': 'world%s' % (i, )})
+ queue.put({'hello': 'world%s' % (i,)})
pool = eventlet.GreenPool(10)
for i in range(n):