From: Martin Pitt Date: Sat, 29 Oct 2011 17:27:08 +0000 (-0400) Subject: newscommit: append command line args to bzr X-Git-Url: https://piware.de/gitweb/?p=bin.git;a=commitdiff_plain;h=6b191bad337ca40ff0e7742e8b90a95161cce4ce newscommit: append command line args to bzr --- diff --git a/newscommit b/newscommit index b1d8b51..101af60 100755 --- a/newscommit +++ b/newscommit @@ -41,6 +41,7 @@ print 'Fixed LP bugs:', ' '.join(lpbugs) argv = ['bzr', 'commit', '-m', msg] for b in lpbugs: argv += ['--fixes', 'lp:' + b] +argv += sys.argv[1:] sys.exit(subprocess.call(argv))