aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-11-02 10:42:57 -0500
committerGalen Guyer <galen@galenguyer.com>2020-11-02 10:42:57 -0500
commit57d0c7c227bdf530ebc6cf7d8276c07f8657f8c0 (patch)
tree7635655b3c47b683e88e7d475008190aa59ecf99
parent9006945167f10157fd4048c7e073c7ad4f44d9f4 (diff)
fix missing colon in if
-rw-r--r--migrations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/migrations.py b/migrations.py
index c93fd0f..c5ad565 100644
--- a/migrations.py
+++ b/migrations.py
@@ -95,7 +95,7 @@ def db_is_same():
if not os.path.exists('./poller'):
os.mkdir('./poller')
-if not os.path.exists('./poller/data')
+if not os.path.exists('./poller/data'):
os.mkdir('./poller/data')
create_tables()