Add missing closure to the Commit.tree getseter

This commit is contained in:
J. David Ibáñez 2011-03-03 16:20:35 +01:00
parent b050de2b26
commit 3e45a68371

@ -766,7 +766,7 @@ static PyGetSetDef Commit_getseters[] = {
(setter)Commit_set_committer, "committer", NULL},
{"author", (getter)Commit_get_author,
(setter)Commit_set_author, "author", NULL},
{"tree", (getter)Commit_get_tree, NULL, "tree object"},
{"tree", (getter)Commit_get_tree, NULL, "tree object", NULL},
{NULL}
};