summaryrefslogtreecommitdiff
path: root/lib/git/objects/commit.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-17 20:13:02 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-17 20:13:02 +0200
commita5cf1bc1d3e38ab32a20707d66b08f1bb0beae91 (patch)
tree63d16571cdb4f645fb2f61d32a4ff09d97ed55e0 /lib/git/objects/commit.py
parentb372e26366348920eae32ee81a47b469b511a21f (diff)
downloadgitpython-a5cf1bc1d3e38ab32a20707d66b08f1bb0beae91.tar.gz
Removed a few diff-related test cases that fail now as the respective method is missing - these tests have to be redone in test-diff module accordingly
Diffstat (limited to 'lib/git/objects/commit.py')
-rw-r--r--lib/git/objects/commit.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/objects/commit.py b/lib/git/objects/commit.py
index 7ed38703..521130c5 100644
--- a/lib/git/objects/commit.py
+++ b/lib/git/objects/commit.py
@@ -214,6 +214,7 @@ class Commit(base.Object, Iterable, base.Diffable):
if not hasattr(stream,'next'):
stream = proc_or_stream.stdout
+
for line in stream:
id = line.split()[1]
assert line.split()[0] == "commit"