aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-dch
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-08-18 18:27:18 +0200
committerGuido Günther <agx@sigxcpu.org>2009-08-18 22:11:09 +0200
commitd42ed408802bf6d894e12322b6d1effcbde68e4c (patch)
treebd16afb7e27efe686ecdb55830e025ad62258fec /git-dch
parentcdcfe424fab90c7cdb28740cbfa44d04475caeaf (diff)
trim commit display
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 36acd18b..dc3100b8 100755
--- a/git-dch
+++ b/git-dch
@@ -251,7 +251,7 @@ def guess_snapshot_commit(cp, repo):
return sr.group('commit')
last = repo.commits(paths="debian/changelog", options=["-1"])
if last:
- print "Changelog last touched at %s" % last
+ print "Changelog last touched at '%s'" % last[0]
return last[0]