aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-02-06 23:34:59 +0100
committerGravatar Christopher Baklid <[email protected]>2018-02-06 23:34:59 +0100
commit95542464d4bf7b4405179d14adc0a61f5cc26bae (patch)
tree2cc944380ac9747d5b25316256d1147d8361b364
parentminor fixes (diff)
last fix
-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)