From 35765966bf77d3afc8f9f98d6e24ccaf302ce95d Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Tue, 29 Jan 2013 09:49:48 +0900 Subject: [PATCH] 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 --- subcmds/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. current_dir = os.getcwd() if current_dir != self.manifest.topdir: - print('If this is not the directory in which you want to initialize' + print('If this is not the directory in which you want to initialize ' 'repo, please run:') print(' rm -r %s/.repo' % self.manifest.topdir) print('and try again.')