Update to latest libgit2 API renaming

See libgit2 commit 25743bd7c5f14f2287d9c4, where git_index_add_from_workdir
was renamed to git_index_add_bypath
This commit is contained in:
J. David Ibáñez 2013-01-19 15:21:43 +01:00
parent e34911b63e
commit 6bb932cd1c

@ -88,7 +88,7 @@ Index_add(Index *self, PyObject *args)
if (!PyArg_ParseTuple(args, "s", &path))
return NULL;
err = git_index_add_from_workdir(self->index, path);
err = git_index_add_bypath(self->index, path);
if (err < 0)
return Error_set_str(err, path);