We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4e0276 + 34e6fd4 commit 536011aCopy full SHA for 536011a
classrank.py
@@ -28,7 +28,6 @@ def parser():
28
"static_path": os.path.join(os.path.dirname(__file__), "classrank/static"),
29
"template_path": os.path.join(os.path.dirname(__file__), "classrank/templates")
30
}
31
- app.settings['debug'] = args.debug
32
33
try:
34
with open(args.settings) as f:
@@ -37,6 +36,7 @@ def parser():
37
36
# no additional settings file so we ignore
38
pass
39
+ settings['debug'] == args.debug
40
db_config = settings['db_config']
41
del settings['db_config']
42
cr = ClassRankApp(args.connection, routes, **settings)
0 commit comments