aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-dch
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-07-20 20:21:22 -0230
committerGuido Guenther <agx@sigxcpu.org>2008-07-20 20:21:22 -0230
commitffeb40eb9a9e2263fcbeae8b3d606c9d98b86086 (patch)
tree3eb915243b70ed6fd45a5327dc6e31ff298ec163 /git-dch
parent4e398cc908f76365b16e38f15d1d1ac64012fd26 (diff)
escape backticks (`)
Closes: 491104
Diffstat (limited to 'git-dch')
-rwxr-xr-xgit-dch2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-dch b/git-dch
index d9458d22..0ef397f4 100755
--- a/git-dch
+++ b/git-dch
@@ -41,7 +41,7 @@ def system(cmd):
def escape_commit(msg):
- return msg.replace('"','\\\"').replace("$","\$")
+ return msg.replace('"','\\\"').replace("$","\$").replace("`","\`")
def add_changelog_entry(msg, author, email):