* branches/cvs2svn-mmacek/cvs2svn.py :
Update to current with libsvn_repos API. Pass a config NULL config argument
to repos.svn_repos_create().
git-svn-id: https://svn.apache.org/repos/asf/subversion/branches/cvs2svn-mmacek@845158 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/cvs2svn.py b/cvs2svn.py
index 111cb34..475045b 100755
--- a/cvs2svn.py
+++ b/cvs2svn.py
@@ -684,7 +684,7 @@
# create the target repository
if not ctx.dry_run:
if ctx.create_repos:
- t_repos = repos.svn_repos_create(ctx.target, None, None, ctx.pool)
+ t_repos = repos.svn_repos_create(ctx.target, None, None, None, ctx.pool)
else:
t_repos = repos.svn_repos_open(ctx.target, ctx.pool)
t_fs = repos.svn_repos_fs(t_repos)