aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-dch
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-07-21 20:13:01 -0230
committerGuido Guenther <agx@sigxcpu.org>2008-07-21 20:13:01 -0230
commit18d840579dacb0a9d6890daa9fb0b621b128753e (patch)
tree8020d8e0edbe9c58c0dbccc1f0fc3537586bc1c4 /git-dch
parent4ac0aa8af83ee090cfb7526d27e4b70ce9cb96d9 (diff)
split git-log options into a list
allows to pass multiple arguments to git-log Closes: #479267
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 0ef397f4..d0dad92b 100755
--- a/git-dch
+++ b/git-dch
@@ -288,7 +288,7 @@ def main(argv):
if args:
print "Only looking for changes on '%s'" % " ".join(args)
- commits = repo.commits(since, until, " ".join(args), options.git_log)
+ commits = repo.commits(since, until, " ".join(args), options.git_log.split(" "))
if commits:
if cp['Distribution'] != "UNRELEASED" and not found_snapshot_header:
add_changelog_section(distribution="UNRELEASED", msg="UNRELEASED")