diff options
Diffstat (limited to 'subcmds/help.py')
-rw-r--r-- | subcmds/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/help.py b/subcmds/help.py index 1e16019a..c219a763 100644 --- a/subcmds/help.py +++ b/subcmds/help.py | |||
@@ -65,7 +65,7 @@ Displays detailed usage information about a command. | |||
65 | def gitc_supported(cmd): | 65 | def gitc_supported(cmd): |
66 | if not isinstance(cmd, GitcAvailableCommand) and not isinstance(cmd, GitcClientCommand): | 66 | if not isinstance(cmd, GitcAvailableCommand) and not isinstance(cmd, GitcClientCommand): |
67 | return True | 67 | return True |
68 | if self.manifest.isGitcClient: | 68 | if self.client.isGitcClient: |
69 | return True | 69 | return True |
70 | if isinstance(cmd, GitcClientCommand): | 70 | if isinstance(cmd, GitcClientCommand): |
71 | return False | 71 | return False |
@@ -127,7 +127,7 @@ Displays detailed usage information about a command. | |||
127 | self.wrap.end_paragraph(1) | 127 | self.wrap.end_paragraph(1) |
128 | self.wrap.end_paragraph(0) | 128 | self.wrap.end_paragraph(0) |
129 | 129 | ||
130 | out = _Out(self.manifest.globalConfig) | 130 | out = _Out(self.client.globalConfig) |
131 | out._PrintSection('Summary', 'helpSummary') | 131 | out._PrintSection('Summary', 'helpSummary') |
132 | cmd.OptionParser.print_help() | 132 | cmd.OptionParser.print_help() |
133 | out._PrintSection('Description', 'helpDescription') | 133 | out._PrintSection('Description', 'helpDescription') |