diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2013-01-29 09:49:48 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2013-01-29 09:52:22 +0900 |
commit | 35765966bf77d3afc8f9f98d6e24ccaf302ce95d (patch) | |
tree | 0055175c8bae8bb2ba38cdb8d7981b8e9bcfc9b5 /subcmds | |
parent | 254709804d83d611831d4c78fe17280750e2eb2a (diff) | |
download | git-repo-35765966bf77d3afc8f9f98d6e24ccaf302ce95d.tar.gz |
Fix: missing space in information message after repo init
In the information message displayed after running repo init, there
is a missing space:
If this is not the directory in which you want to initializerepo
Add a space.
Change-Id: I20467673ba7481cfe782ba58ff6ed2f7ce9824a5
Diffstat (limited to 'subcmds')
-rw-r--r-- | subcmds/init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/init.py b/subcmds/init.py index 55497d82..11312601 100644 --- a/subcmds/init.py +++ b/subcmds/init.py | |||
@@ -333,7 +333,7 @@ to update the working directory files. | |||
333 | 333 | ||
334 | current_dir = os.getcwd() | 334 | current_dir = os.getcwd() |
335 | if current_dir != self.manifest.topdir: | 335 | if current_dir != self.manifest.topdir: |
336 | print('If this is not the directory in which you want to initialize' | 336 | print('If this is not the directory in which you want to initialize ' |
337 | 'repo, please run:') | 337 | 'repo, please run:') |
338 | print(' rm -r %s/.repo' % self.manifest.topdir) | 338 | print(' rm -r %s/.repo' % self.manifest.topdir) |
339 | print('and try again.') | 339 | print('and try again.') |