summaryrefslogtreecommitdiff
path: root/subvertpy/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'subvertpy/client.c')
-rw-r--r--subvertpy/client.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/subvertpy/client.c b/subvertpy/client.c
index 81cd0b5d..3cbe2cb4 100644
--- a/subvertpy/client.c
+++ b/subvertpy/client.c
@@ -476,7 +476,11 @@ static PyObject *client_new(PyTypeObject *type, PyObject *args, PyObject *kwargs
return NULL;
}
+#if ONLY_SINCE_SVN(1, 8)
+ err = svn_client_create_context2(&ret->client, NULL, ret->pool);
+#else
err = svn_client_create_context(&ret->client, ret->pool);
+#endif
if (err != NULL) {
handle_svn_error(err);
svn_error_clear(err);