Skip to content

Commit

Permalink
Add newline to git-new-branch output.
Browse files Browse the repository at this point in the history
R=iannucci@chromium.org, pgervais@chromium.org

Review URL: https://codereview.chromium.org/261843002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@267616 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
agable@chromium.org committed May 1, 2014
1 parent 90fe58b commit 9c0f851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git_new_branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main(args):
sys.stdout.write(cpe.stdout)
sys.stderr.write(cpe.stderr)
return 1
sys.stderr.write('Switched to branch %s.' % opts.branch_name)
sys.stderr.write('Switched to branch %s.\n' % opts.branch_name)


if __name__ == '__main__': # pragma: no cover
Expand Down

0 comments on commit 9c0f851

Please sign in to comment.