summaryrefslogtreecommitdiff
path: root/lib/git/head.py
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2008-09-05 22:24:13 +0200
committerFlorian Apolloner <florian@apolloner.eu>2008-09-05 22:24:13 +0200
commit3131d1a5295508f583ae22788a1065144bec3cee (patch)
tree7b35b4b87dba41b417cdc4ce276c3f2af3fca7c3 /lib/git/head.py
parent1adc79ac67e5eabaa8b8509150c59bc5bd3fd4e6 (diff)
parent590638f9a56440a2c41cc04f52272ede04c06a43 (diff)
downloadgitpython-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.py2
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):