aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/git_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/git_utils.py')
-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: