summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorBarry Scott <barry@barrys-emacs.org>2016-07-29 11:33:17 +0100
committerBarry Scott <barry@barrys-emacs.org>2016-07-29 11:33:17 +0100
commit1116ef7e1bcbbc71d0b654b63156b29bfbf9afab (patch)
treecf36c9a204dde27f8e2a770be83cf5258bdb1d50 /git/repo/base.py
parentb4b5ecc217154405ac0f6221af99a4ab18d067f6 (diff)
parenta4ad7cee0f8723226446a993d4f1f3b98e42583a (diff)
downloadgitpython-1116ef7e1bcbbc71d0b654b63156b29bfbf9afab.tar.gz
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 282dfc15..61864060 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -714,8 +714,7 @@ class Repo(object):
authored_date=int(props[b'author-time']),
committer=Actor(safe_decode(props[b'committer']),
safe_decode(props[b'committer-mail'].lstrip(b'<').rstrip(b'>'))),
- committed_date=int(props[b'committer-time']),
- message=safe_decode(props[b'summary']))
+ committed_date=int(props[b'committer-time']))
commits[hexsha] = c
else:
# Discard the next line (it's a filename end tag)
@@ -815,8 +814,7 @@ class Repo(object):
authored_date=info['author_date'],
committer=Actor._from_string(
info['committer'] + ' ' + info['committer_email']),
- committed_date=info['committer_date'],
- message=info['summary'])
+ committed_date=info['committer_date'])
commits[sha] = c
# END if commit objects needs initial creation
if not is_binary: