From 821ed2fd7fa725c7bd0353fd3f5a7e843198682d Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Tue, 15 Oct 2013 23:32:39 +0200 Subject: Quotestyle --- index.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'index.py') 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() -- cgit v1.2.3-54-g00ecf