Document why get_remote_call_options is not needed for svn info invocation

This commit is contained in:
johnthagen 2019-05-22 07:05:35 -04:00
parent 00efe18954
commit a708240d2b
1 changed files with 5 additions and 0 deletions

View File

@ -183,6 +183,11 @@ class Subversion(VersionControl):
else:
try:
# subversion >= 1.7
# Note that using get_remote_call_options is not necessary here
# because `svn info` is being run against a local directory.
# We don't need to worry about making sure interactive mode
# is being used to prompt for passwords, because passwords
# are only potentially needed for remote server requests.
xml = cls.run_command(
['info', '--xml', location],
show_stdout=False,