From: Jaroslav Kysela Date: Thu, 4 Sep 2008 08:18:24 +0000 (+0200) Subject: alsatool: fix kmirrorcheck command (when '"' is in comment) X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=9eda4d620a373386945963d52aa215ad82e76e15;p=alsa.git alsatool: fix kmirrorcheck command (when '"' is in comment) Signed-off-by: Jaroslav Kysela --- diff --git a/alsatool b/alsatool index f405673..6fbad8d 100755 --- a/alsatool +++ b/alsatool @@ -995,6 +995,7 @@ def kmirrorcheck(): msg.append('\nSigned-off-by: Jaroslav Kysela \n') os.chdir(ROOT + '/alsa') os.system("git add kernel-sync/git-ok-commits") + msg = ''.join(msg).replace('"', '\\"') os.system("git commit -m \"%s\" -e" % ''.join(msg)) def kmirrormark(argv):