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 32b083d commit f249b6aCopy full SHA for f249b6a
roundup/admin.py
@@ -1932,6 +1932,8 @@ def run_command(self, args):
1932
self.help_commands()
1933
self.help_all()
1934
return 0
1935
+ if command == 'templates':
1936
+ return self.do_templates(args[1:])
1937
1938
# figure what the command is
1939
try:
@@ -1970,8 +1972,6 @@ def run_command(self, args):
1970
1972
except UsageError as message: # noqa: F841
1971
1973
print(_('Error: %(message)s') % locals())
1974
return 1
- elif command == "templates":
- return self.do_templates(args[1:])
1975
1976
# get the tracker
1977
0 commit comments