summaryrefslogtreecommitdiff
path: root/index.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xindex.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.py b/index.py
index 7ac98c0..af0516b 100755
--- a/index.py
+++ b/index.py
@@ -10,11 +10,11 @@ try:
except IndexError:
cmd = None
-if cmd == "create":
+if cmd == 'create':
db.create_all()
-elif cmd == "drop":
+elif cmd == 'drop':
db.drop_all()
-elif cmd == "compile":
- app.jinja_env.compile_templates("comp", zip = None)
+elif cmd == 'compile':
+ app.jinja_env.compile_templates('comp', zip = None)
else:
app.run()