From af7d3ae18cfb4ffd5cacf3854d08e43ab20bc4ec Mon Sep 17 00:00:00 2001 From: jacobtolar Date: Thu, 15 Sep 2016 09:48:58 -0500 Subject: [PATCH] Fix documentation typo --- docs/source/topic/using_with_existing_modules.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/topic/using_with_existing_modules.rst b/docs/source/topic/using_with_existing_modules.rst index 8b1881b..8352a82 100644 --- a/docs/source/topic/using_with_existing_modules.rst +++ b/docs/source/topic/using_with_existing_modules.rst @@ -15,7 +15,7 @@ Celery # Create a Redis instance using redislite REDIS_DB_PATH = os.path.join('/tmp/my_redis.db') - rdb = Redis(RDB_PATH) + rdb = Redis(REDIS_DB_PATH) REDIS_SOCKET_PATH = 'redis+socket://%s' % (rdb.socket_file, ) # Use redislite for the Celery broker