From 755f6c5e7c0c276f8e49b53786163ac51b71862f Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Mon, 12 Oct 2015 13:59:53 +0100 Subject: [PATCH] remove unneeded quotes from commit message --- scripts/lp-merge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lp-merge.py b/scripts/lp-merge.py index 42ed2f31c..8a09f1e0c 100755 --- a/scripts/lp-merge.py +++ b/scripts/lp-merge.py @@ -129,7 +129,7 @@ for bug in bugs: commit_command.append('lp:' + bug) commit_command.append('-m') -commit_command.append('"' + commit_message + '"') +commit_command.append(commit_message) commit_command.append('--author') commit_command.append('"' + author_email + '"')