Remove unnecessary get_remote_call_options() invocation for local `svn info` call

This commit is contained in:
johnthagen 2019-05-21 07:13:53 -04:00
parent 1361456113
commit 00efe18954
1 changed files with 1 additions and 2 deletions

View File

@ -184,8 +184,7 @@ class Subversion(VersionControl):
try:
# subversion >= 1.7
xml = cls.run_command(
(['info', '--xml', location] +
Subversion().get_remote_call_options()),
['info', '--xml', location],
show_stdout=False,
)
url = _svn_info_xml_url_re.search(xml).group(1)