From 2f9e7e40c44acae37d0c263c212956ef6038c35b Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Tue, 5 Mar 2013 17:26:46 +0900 Subject: Fix: Missing spaces in printed messages Several messages are printed with the `print` method and the message is split across two lines, i.e.: print('This is a message split' 'across two source code lines') Which causes the message to be printed as: This is a message splitacross two source code lines Add a space at the end of the first line before the line break: print('This is a message split ' 'across two source code lines' Also correct a minor spelling mistake. Change-Id: Ib98d93fcfb98d78f48025fcc428b6661380cff79 --- subcmds/cherry_pick.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'subcmds/cherry_pick.py') diff --git a/subcmds/cherry_pick.py b/subcmds/cherry_pick.py index 01b97e07..520e4c32 100644 --- a/subcmds/cherry_pick.py +++ b/subcmds/cherry_pick.py @@ -81,7 +81,7 @@ change id will be added. sys.exit(1) else: - print('NOTE: When committing (please see above) and editing the commit' + print('NOTE: When committing (please see above) and editing the commit ' 'message, please remove the old Change-Id-line and add:') print(self._GetReference(sha1), file=sys.stderr) print(file=sys.stderr) -- cgit v1.2.3-54-g00ecf