Update to libgit2 v0.13.0

This commit is contained in:
J. David Ibáñez
2011-06-20 16:04:52 +02:00
parent 64b20305e6
commit 7e8da54569

View File

@@ -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;