summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmanage.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/manage.py b/manage.py
index 7dbf004..8149ff1 100755
--- a/manage.py
+++ b/manage.py
@@ -6,11 +6,11 @@ from accounts import app
def main():
manager = Manager(app)
manager.add_command(
- "runserver", Server(host='::', use_debugger=False))
+ 'runserver', Server(host='::', use_debugger=False))
manager.add_command(
- "debug", Server(host='::', use_debugger=True))
+ 'debug', Server(host='::', use_debugger=True))
manager.add_command(
- "shell", Shell(make_context=lambda: dict(app=app)))
+ 'shell', Shell(make_context=lambda: dict(app=app)))
manager.run()