Skip to content

Commit

Permalink
Merge pull request #4933 from stsewd/fix-svn
Browse files Browse the repository at this point in the history
Fix svn update
  • Loading branch information
ericholscher authored Nov 29, 2018
2 parents 37f2ef4 + 3f8f625 commit a5a761b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readthedocs/vcs_support/backends/svn.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def update(self):
super(Backend, self).update()
# For some reason `svn status` gives me retcode 0 in non-svn
# directories that's why I use `svn info` here.
retcode = self.run('svn', 'info', record_as_success=True)[0]
retcode, _, _ = self.run('svn', 'info', record=False)
if retcode == 0:
return self.up()
return self.co()
Expand Down

0 comments on commit a5a761b

Please sign in to comment.