I am trying to use Python SVN bindings (pysvn) to export to a repository and I find the following error:
python: subversion/libsvn_subr/dirent_uri.c:955: svn_dirent_join: Assertion `svn_dirent_is_canonical(base, pool)' failed. Aborted (core dumped)
Code example:
import pysvn client = pysvn.Client() uri = 'https://svn.mycompany.com/myproject/trunk/'
However, running svn export --force https://svn.mycompany.com/myproject/trunk/ from the shell works without problems.
I use:
- Python 2.7.3
- Subversion 1.7.5
- CentOS 6.0 x64
Any ideas please?
source share