Don't warn when installing externally hosted files

Users who opted to install externally hosted files were being warned
about the possiblility of the availability of those files would be
unreliable. However this has caused some contention and confusion
and at this point they've already decided to do it, so there's no
reason to tell them again.
This commit is contained in:
Donald Stufft 2014-05-08 12:13:48 -04:00
parent 69bf70676a
commit 9f56b79e8d
1 changed files with 9 additions and 9 deletions

View File

@ -276,8 +276,11 @@ class PackageFinder(object):
)
if self.need_warn_external:
logger.warn("Some externally hosted files were ignored (use "
"--allow-external %s to allow)." % req.name)
logger.warn(
"Some externally hosted files were ignored as access to "
"them may be unreliable (use --allow-external %s to "
"allow)." % req.name
)
if self.need_warn_unverified:
logger.warn("Some insecure and unverifiable files were ignored"
@ -363,8 +366,10 @@ class PackageFinder(object):
)
if self.need_warn_external:
logger.warn("Some externally hosted files were ignored (use "
"--allow-external to allow).")
logger.warn(
"Some externally hosted files were ignored as access to "
"them may be unreliable (use --allow-external to allow)."
)
if self.need_warn_unverified:
logger.warn("Some insecure and unverifiable files were ignored"
@ -399,11 +404,6 @@ class PackageFinder(object):
selected_version = applicable_versions[0][1]
if (selected_version.internal is not None
and not selected_version.internal):
logger.warn("%s is an externally hosted file and access to it may "
"be unreliable" % req.name)
if (selected_version.verifiable is not None
and not selected_version.verifiable):
logger.warn("%s is potentially insecure and "