aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-04-28 19:54:15 +0200
committerGuido Günther <agx@sigxcpu.org>2009-05-02 19:54:06 +0200
commitb772300b698753b336d1e9f37b2e25066537512f (patch)
treed940ea256603c947459d18c3493c93671ce8b608 /gbp
parentb72ac2557609310d470be93e27a744fe7bcb886d (diff)
pass --pretty=medium to git show
Closes: #525969
Diffstat (limited to 'gbp')
-rw-r--r--gbp/git_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/git_utils.py b/gbp/git_utils.py
index e0777b7a..09fc5b05 100644
--- a/gbp/git_utils.py
+++ b/gbp/git_utils.py
@@ -114,7 +114,7 @@ class GitRepository(object):
def show(self, id):
"""git-show id"""
- commit, ret = self.__git_getoutput('show', [ id ])
+ commit, ret = self.__git_getoutput('show', [ "--pretty=medium", id ])
if ret:
raise GitRepositoryError, "can't get %s" % id
for line in commit: