diff options
author | 2018-02-06 23:34:59 +0100 | |
---|---|---|
committer | 2018-02-06 23:34:59 +0100 | |
commit | 95542464d4bf7b4405179d14adc0a61f5cc26bae (patch) | |
tree | 2cc944380ac9747d5b25316256d1147d8361b364 | |
parent | minor fixes (diff) |
last fix
-rw-r--r-- | gunicorn_config.py | 2 |
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) |