From 7e8da5456942c02818056523a3b12a605f2c35ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Mon, 20 Jun 2011 16:04:52 +0200 Subject: [PATCH] Update to libgit2 v0.13.0 --- pygit2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygit2.c b/pygit2.c index 9f02920..851c663 100644 --- a/pygit2.c +++ b/pygit2.c @@ -233,7 +233,7 @@ py_str_to_git_oid(PyObject *py_str, git_oid *oid) { return 0; } - err = git_oid_mkstr(oid, hex); + err = git_oid_fromstr(oid, hex); if (err < 0) { Error_set_py_obj(err, py_str); return 0;