summaryrefslogtreecommitdiffstats
path: root/src/if_py_both.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/if_py_both.h')
-rw-r--r--src/if_py_both.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h
index b27f93e49e..20affe31db 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -1210,7 +1210,7 @@ FinderFindSpec(PyObject *self, PyObject *args)
if (!(paths = Vim_GetPaths(self)))
return NULL;
- spec = PyObject_CallFunction(py_find_spec, "sNN", fullname, paths, target);
+ spec = PyObject_CallFunction(py_find_spec, "sOO", fullname, paths, target);
Py_DECREF(paths);