diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-04 17:22:08 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-04 17:22:08 +0200 |
commit | e746f96bcc29238b79118123028ca170adc4ff0f (patch) | |
tree | efa61d7735d41c4fa42ddec952886332654d3b63 /lib/git/objects/commit.py | |
parent | a1e80445ad5cb6da4c0070d7cb8af89da3b0803b (diff) | |
download | gitpython-e746f96bcc29238b79118123028ca170adc4ff0f.tar.gz |
Fixed implementation after design change to deal with it - all tests run, but next there will have to be more through testing
Diffstat (limited to 'lib/git/objects/commit.py')
-rw-r--r-- | lib/git/objects/commit.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/git/objects/commit.py b/lib/git/objects/commit.py index dbc0cf27..9a3c2c95 100644 --- a/lib/git/objects/commit.py +++ b/lib/git/objects/commit.py @@ -9,6 +9,7 @@ import git.diff as diff import git.stats as stats from git.actor import Actor from tree import Tree +from git.odb import IStream from cStringIO import StringIO import base import utils @@ -346,7 +347,8 @@ class Commit(base.Object, Iterable, diff.Diffable, utils.Traversable, utils.Seri streamlen = stream.tell() stream.seek(0) - new_commit.sha = repo.odb.store(cls.type, streamlen, stream, sha_as_hex=True) + istream = repo.odb.store(IStream(cls.type, streamlen, stream)) + new_commit.sha = istream.sha if head: try: |