summaryrefslogtreecommitdiffstats
path: root/subcmds/help.py
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2013-03-06 00:46:45 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-03-06 00:46:45 +0000
commit3ee6ffd07852c184feef5afd695d80a3f9a0db79 (patch)
tree7e6e44db4a785a52579589f81de88fb16564c1f3 /subcmds/help.py
parent28db6ffef48138fc97aca9fbf0d774ac26a41c70 (diff)
parent2f9e7e40c44acae37d0c263c212956ef6038c35b (diff)
downloadgit-repo-3ee6ffd07852c184feef5afd695d80a3f9a0db79.tar.gz
Merge "Fix: Missing spaces in printed messages"
Diffstat (limited to 'subcmds/help.py')
-rw-r--r--subcmds/help.py2
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):