Add missing closure to the Commit.tree getseter
This commit is contained in:
2
pygit2.c
2
pygit2.c
@@ -766,7 +766,7 @@ static PyGetSetDef Commit_getseters[] = {
|
|||||||
(setter)Commit_set_committer, "committer", NULL},
|
(setter)Commit_set_committer, "committer", NULL},
|
||||||
{"author", (getter)Commit_get_author,
|
{"author", (getter)Commit_get_author,
|
||||||
(setter)Commit_set_author, "author", NULL},
|
(setter)Commit_set_author, "author", NULL},
|
||||||
{"tree", (getter)Commit_get_tree, NULL, "tree object"},
|
{"tree", (getter)Commit_get_tree, NULL, "tree object", NULL},
|
||||||
{NULL}
|
{NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user