我正在尝试使用 Python SVN 绑定 (pysvn) 在存储库上进行导出,但遇到以下错误:
python: subversion/libsvn_subr/dirent_uri.c:955: svn_dirent_join: Assertion `svn_dirent_is_canonical(base, pool)' failed.
Aborted (core dumped)
示例代码是:
import pysvn
client = pysvn.Client()
uri = 'https://svn.mycompany.com/myproject/trunk/'
# This works fine
print client.list(uri)
# This crashes with the above error
r = client.export(uri, './temp', force=True)
但是,svn export --force https://svn.mycompany.com/myproject/trunk/
从 shell 提示符执行操作没有问题。
我在用着:
- Python 2.7.3
- 颠覆 1.7.5
- CentOS 6.0 x64
请问有什么想法吗?