We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb36498 commit 648e6fdCopy full SHA for 648e6fd
readthedocs/vcs_support/backends/svn.py
@@ -19,8 +19,8 @@ class Backend(BaseVCS):
19
supports_tags = False
20
fallback_branch = '/trunk/'
21
22
- def __init__(self, project, version, **kwargs):
23
- super(Backend, self).__init__(project, version)
+ def __init__(self, *args, **kwargs):
+ super(Backend, self).__init__(*args, **kwargs)
24
if self.repo_url[-1] != '/':
25
self.base_url = self.repo_url
26
self.repo_url += '/'
0 commit comments