diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-09-05 22:24:13 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-09-05 22:24:13 +0200 |
commit | 3131d1a5295508f583ae22788a1065144bec3cee (patch) | |
tree | 7b35b4b87dba41b417cdc4ce276c3f2af3fca7c3 /lib/git/head.py | |
parent | 1adc79ac67e5eabaa8b8509150c59bc5bd3fd4e6 (diff) | |
parent | 590638f9a56440a2c41cc04f52272ede04c06a43 (diff) | |
download | gitpython-3131d1a5295508f583ae22788a1065144bec3cee.tar.gz |
Merge branch 'master' of git://gitorious.org/git-python/nud
Diffstat (limited to 'lib/git/head.py')
-rw-r--r-- | lib/git/head.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/head.py b/lib/git/head.py index 9a5d2fd4..96d35010 100644 --- a/lib/git/head.py +++ b/lib/git/head.py @@ -105,7 +105,7 @@ class Head(object): """ full_name, ids = line.split("\x00") name = full_name.split("/")[-1] - c = commit.Commit(repo, **{'id': ids}) + c = commit.Commit(repo, id=ids) return Head(name, c) def __repr__(self): |