Fix last minute typo

This commit is contained in:
Jose Plana
2013-12-02 16:17:51 +01:00
parent c23b6fe6f9
commit 6050ae021d

View File

@@ -207,7 +207,7 @@ Remote_set_fetch_refspecs(Remote *self, PyObject *args)
if (! PyArg_Parse(args, "O", &pyrefspecs)) if (! PyArg_Parse(args, "O", &pyrefspecs))
return Error_set(GITERR_INVALID); return Error_set(GITERR_INVALID);
if (get_strarraygit_from_pylist(&fetch_refspecs , pyrefspecs) != GIT_OK) { if (get_strarraygit_from_pylist(&fetch_refspecs , pyrefspecs) != GIT_OK)
return NULL; return NULL;
err = git_remote_set_fetch_refspecs(self->remote, &fetch_refspecs); err = git_remote_set_fetch_refspecs(self->remote, &fetch_refspecs);