diff options
author | Guido Günther <agx@sigxcpu.org> | 2009-04-28 19:54:15 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2009-05-02 19:54:06 +0200 |
commit | b772300b698753b336d1e9f37b2e25066537512f (patch) | |
tree | d940ea256603c947459d18c3493c93671ce8b608 /gbp | |
parent | b72ac2557609310d470be93e27a744fe7bcb886d (diff) | |
download | git-buildpackage-b772300b698753b336d1e9f37b2e25066537512f.tar.gz git-buildpackage-b772300b698753b336d1e9f37b2e25066537512f.tar.bz2 git-buildpackage-b772300b698753b336d1e9f37b2e25066537512f.zip |
pass --pretty=medium to git show
Closes: #525969
Diffstat (limited to 'gbp')
-rw-r--r-- | gbp/git_utils.py | 2 |
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: |