From 9c0f85130ebb41ac68daf6f877605b7f7c106d73 Mon Sep 17 00:00:00 2001 From: "agable@chromium.org" Date: Thu, 1 May 2014 20:23:30 +0000 Subject: [PATCH] Add newline to git-new-branch output. 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 --- git_new_branch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_new_branch.py b/git_new_branch.py index 810aa02e1b..6c3f39f7e6 100755 --- a/git_new_branch.py +++ b/git_new_branch.py @@ -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