diff options
author | Wojciech MatyĆkiewicz <wojtek@matyskiewicz.com> | 2017-09-06 13:08:09 +0200 |
---|---|---|
committer | George Psarakis <giwrgos.psarakis@gmail.com> | 2017-09-06 20:21:16 +0300 |
commit | a44763fbef9fb5d6c16e08948811234b76f793be (patch) | |
tree | 784dd343bf43d9abe98267461c7fe2067af26a46 /docs | |
parent | 2a161a4408a4322351cb882f6cdd98019ce22d5e (diff) | |
download | kombu-a44763fbef9fb5d6c16e08948811234b76f793be.tar.gz |
fixed import path to SimpleQueue and SimpleBuffer
Diffstat (limited to 'docs')
-rw-r--r-- | docs/userguide/simple.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/simple.rst b/docs/userguide/simple.rst index c65d72c8..4e7069d0 100644 --- a/docs/userguide/simple.rst +++ b/docs/userguide/simple.rst @@ -32,7 +32,7 @@ This is equivalent to: .. code-block:: pycon - >>> from kombu import SimpleQueue, SimpleBuffer + >>> from kombu.simple import SimpleQueue, SimpleBuffer >>> channel = connection.channel() >>> queue = SimpleBuffer(channel) |