mirror of
https://gerrit.googlesource.com/git-repo
synced 2026-06-04 17:09:48 +00:00
2f9e7e40c44acae37d0c263c212956ef6038c35b
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
Description
Languages
Python
97.9%
Shell
2.1%