File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2525from roundup import admin , configuration , demo , instance
2626from roundup .i18n import _
2727from roundup .anypy .my_input import my_input
28+ from roundup import version_check
2829
2930def run ():
3031 home = DEFAULT_HOME
@@ -51,15 +52,16 @@ def run():
5152 templates = admin .AdminTool ().listTemplates ().keys ()
5253 template = my_input (
5354 _ ('Enter tracker template to use (one of (%s)) [%s]: ' ) %
54- (',' .join (templates ),template ))
55+ (',' .join (templates ), template ))
5556 if not template :
5657 template = DEFAULT_TEMPLATE
5758 # install
5859 demo .install_demo (home , backend ,
59- admin .AdminTool ().listTemplates ()[template ]['path' ])
60+ admin .AdminTool ().listTemplates ()[template ]['path' ])
6061 # run
6162 demo .run_demo (home )
6263
64+
6365if __name__ == '__main__' :
6466 run ()
6567
You can’t perform that action at this time.
0 commit comments