Skip to content

Commit 39fdaed

Browse files
committed
issue2550983 - help_commands_html unused
Make the command htmlhelp trigger the command. The output is ugly however. But clean this up and we could generate html docs for the current admin.py version replacing existing docs similar to how the doc is now done for config.ini.
1 parent a93f3bb commit 39fdaed

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

roundup/admin.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2195,6 +2195,10 @@ def run_command(self, args):
21952195
self.help_all()
21962196
return 0
21972197

2198+
if command == 'htmlhelp':
2199+
self.help_commands_html()
2200+
return 0
2201+
21982202
# figure what the command is
21992203
try:
22002204
functions = self.commands.get(command)

0 commit comments

Comments
 (0)