summaryrefslogtreecommitdiff
path: root/examples/hello_publisher.py
diff options
context:
space:
mode:
authorxiaoshaaming <793053286@qq.com>2016-05-10 11:13:56 +0800
committerxiaoshaaming <793053286@qq.com>2016-05-10 11:13:56 +0800
commit78cda4c410a22ece3520f03744b9020e23d5d482 (patch)
tree0c6251e67cc28e98f265076a13b93613a4e24b8e /examples/hello_publisher.py
parent0a5363a319af81594ceb4bae9380e0f50673f1ef (diff)
downloadkombu-78cda4c410a22ece3520f03744b9020e23d5d482.tar.gz
spelling mistake
Diffstat (limited to 'examples/hello_publisher.py')
-rw-r--r--examples/hello_publisher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello_publisher.py b/examples/hello_publisher.py
index 0eb9de9e..e6b07361 100644
--- a/examples/hello_publisher.py
+++ b/examples/hello_publisher.py
@@ -7,7 +7,7 @@ from kombu import Connection
with Connection('amqp://guest:guest@localhost:5672//') as conn:
simple_queue = conn.SimpleQueue('simple_queue')
- message = 'helloword, sent at {0}'.format(datetime.datetime.today())
+ message = 'helloworld, sent at {0}'.format(datetime.datetime.today())
simple_queue.put(message)
print('Sent: {0}'.format(message))
simple_queue.close()