1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

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

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)