diff options
Diffstat (limited to 'subcmds/help.py')
-rw-r--r-- | subcmds/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/help.py b/subcmds/help.py index a839131b..80040711 100644 --- a/subcmds/help.py +++ b/subcmds/help.py | |||
@@ -150,7 +150,7 @@ Displays detailed usage information about a command. | |||
150 | def _PrintAllCommandHelp(self): | 150 | def _PrintAllCommandHelp(self): |
151 | for name in sorted(all_commands): | 151 | for name in sorted(all_commands): |
152 | cmd = all_commands[name](manifest=self.manifest) | 152 | cmd = all_commands[name](manifest=self.manifest) |
153 | self._PrintCommandHelp(cmd, header_prefix="[%s] " % (name,)) | 153 | self._PrintCommandHelp(cmd, header_prefix=f"[{name}] ") |
154 | 154 | ||
155 | def _Options(self, p): | 155 | def _Options(self, p): |
156 | p.add_option( | 156 | p.add_option( |