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.
1 parent 201f5fd commit c32a92fCopy full SHA for c32a92f
roundup/scripts/roundup_demo.py
@@ -51,8 +51,10 @@ def run():
51
home = DEFAULT_HOME
52
templates = admin.AdminTool().listTemplates().keys()
53
template = my_input(
54
- _('Enter tracker template to use (one of (%s)) [%s]: ') %
55
- (','.join(templates), template))
+ _('Enter tracker template to use (one of (%(template_list)s)) [%(d\
+efault_template)s]: ') %
56
+ { 'template_list': ','.join(templates),
57
+ 'default_template': template})
58
if not template:
59
template = DEFAULT_TEMPLATE
60
# install
0 commit comments