aboutsummaryrefslogtreecommitdiffstats
path: root/gunicorn_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'gunicorn_config.py')
-rw-r--r--gunicorn_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gunicorn_config.py b/gunicorn_config.py
index a2e6ac23..2b5c52ea 100644
--- a/gunicorn_config.py
+++ b/gunicorn_config.py
@@ -27,7 +27,7 @@ def when_ready(server):
table_exists = r.db(DB).table_list().contains(TABLE).run(conn)
if not table_exists:
server.log.info('adding table {0}'.format(TABLE))
- result = r.db(DB).table_create(TABLE).run(conn)
+ r.db(DB).table_create(TABLE).run(conn)
# Check if index exists if not add it
rtable = r.db(DB).table(TABLE)