From 01265da7eb1fa8771f7b444f44708f47cccea037 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Sun, 19 Sep 2010 20:49:05 +0200 Subject: [PATCH] sponsor-patch: Add fullstops. --- sponsor-patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sponsor-patch b/sponsor-patch index 78fdd9c..266e434 100755 --- a/sponsor-patch +++ b/sponsor-patch @@ -694,17 +694,17 @@ def main(script_name, bug_number, build, edit, keyid, upload, verbose=False): cmd = ['debcommit'] Print.command(cmd) if subprocess.call(cmd) != 0: - Print.error('Bzr commit failed') + Print.error('Bzr commit failed.') sys.exit(1) cmd = ['bzr', 'mark-uploaded'] Print.command(cmd) if subprocess.call(cmd) != 0: - Print.error('Bzr tagging failed') + Print.error('Bzr tagging failed.') sys.exit(1) cmd = ['bzr', 'push', ':parent'] Print.command(cmd) if subprocess.call(cmd) != 0: - Print.error('Bzr push failed') + Print.error('Bzr push failed.') sys.exit(1) # Leave while loop if everything worked