From 590638f9a56440a2c41cc04f52272ede04c06a43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steve=20Fr=C3=A9cinaux?= Date: Fri, 5 Sep 2008 09:23:43 +0200 Subject: Fix unneeded dict unpacking. --- lib/git/head.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/head.py') 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): -- cgit v1.2.1