diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2013-03-06 00:46:45 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-03-06 00:46:45 +0000 |
commit | 3ee6ffd07852c184feef5afd695d80a3f9a0db79 (patch) | |
tree | 7e6e44db4a785a52579589f81de88fb16564c1f3 /subcmds/help.py | |
parent | 28db6ffef48138fc97aca9fbf0d774ac26a41c70 (diff) | |
parent | 2f9e7e40c44acae37d0c263c212956ef6038c35b (diff) | |
download | git-repo-3ee6ffd07852c184feef5afd695d80a3f9a0db79.tar.gz |
Merge "Fix: Missing spaces in printed messages"
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 15aab7f9..78428825 100644 --- a/subcmds/help.py +++ b/subcmds/help.py | |||
@@ -49,7 +49,7 @@ Displays detailed usage information about a command. | |||
49 | except AttributeError: | 49 | except AttributeError: |
50 | summary = '' | 50 | summary = '' |
51 | print(fmt % (name, summary)) | 51 | print(fmt % (name, summary)) |
52 | print("See 'repo help <command>' for more information on a" | 52 | print("See 'repo help <command>' for more information on a " |
53 | 'specific command.') | 53 | 'specific command.') |
54 | 54 | ||
55 | def _PrintCommonCommands(self): | 55 | def _PrintCommonCommands(self): |