diff options
| author | xiaoshaaming <793053286@qq.com> | 2016-05-10 11:13:56 +0800 |
|---|---|---|
| committer | xiaoshaaming <793053286@qq.com> | 2016-05-10 11:13:56 +0800 |
| commit | 78cda4c410a22ece3520f03744b9020e23d5d482 (patch) | |
| tree | 0c6251e67cc28e98f265076a13b93613a4e24b8e /examples/hello_publisher.py | |
| parent | 0a5363a319af81594ceb4bae9380e0f50673f1ef (diff) | |
| download | kombu-78cda4c410a22ece3520f03744b9020e23d5d482.tar.gz | |
spelling mistake
Diffstat (limited to 'examples/hello_publisher.py')
| -rw-r--r-- | examples/hello_publisher.py | 2 |
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() |
