Skip to content

Commit 648e6fd

Browse files
humitosagjohnson
authored andcommitted
Fix SVN initialization for command logging (#3638)
1 parent fb36498 commit 648e6fd

File tree

1 file changed

+2
-2
lines changed
  • readthedocs/vcs_support/backends

1 file changed

+2
-2
lines changed

readthedocs/vcs_support/backends/svn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ class Backend(BaseVCS):
1919
supports_tags = False
2020
fallback_branch = '/trunk/'
2121

22-
def __init__(self, project, version, **kwargs):
23-
super(Backend, self).__init__(project, version)
22+
def __init__(self, *args, **kwargs):
23+
super(Backend, self).__init__(*args, **kwargs)
2424
if self.repo_url[-1] != '/':
2525
self.base_url = self.repo_url
2626
self.repo_url += '/'

0 commit comments

Comments
 (0)