summaryrefslogtreecommitdiff
path: root/git/objects/commit.py
diff options
context:
space:
mode:
authorPratik Anurag <panurag247365@gmail.com>2019-10-15 17:42:11 +0530
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-15 15:13:01 +0200
commite3a57f53d74998e835bce1a69bccbd9c1dadd6f9 (patch)
tree3362e6350ced9f78a834cdee986d831504aa0354 /git/objects/commit.py
parentf83797aefa6a04372c0d5c5d86280c32e4977071 (diff)
downloadgitpython-e3a57f53d74998e835bce1a69bccbd9c1dadd6f9.tar.gz
removed trailing whitespaces
Diffstat (limited to 'git/objects/commit.py')
-rw-r--r--git/objects/commit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/commit.py b/git/objects/commit.py
index b3b02f9f..997fc590 100644
--- a/git/objects/commit.py
+++ b/git/objects/commit.py
@@ -140,7 +140,7 @@ class Commit(base.Object, Iterable, Diffable, Traversable, Serializable):
def _set_cache_(self, attr):
if attr in Commit.__slots__:
# read the data in a chunk, its faster - then provide a file wrapper
- _binsha, _typename, self.size, stream = self.repo.odb.stream(self.binsha)
+ _binsha, _typename, self.size, stream = self.repo.odb.stream(self.binsha)
self._deserialize(BytesIO(stream.read()))
else:
super(Commit, self)._set_cache_(attr)