summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/IDE
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Tools/IDE')
-rwxr-xr-xMac/Tools/IDE/PackageManager.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/Tools/IDE/PackageManager.py b/Mac/Tools/IDE/PackageManager.py
index 4732977..de56d59 100755
--- a/Mac/Tools/IDE/PackageManager.py
+++ b/Mac/Tools/IDE/PackageManager.py
@@ -230,7 +230,9 @@ class PimpInterface:
try:
self.pimpdb.appendURL(url)
except IOError, arg:
- return "Cannot open %s: %s" % (url, arg)
+ rv = "Cannot open %s: %s\n" % (url, arg)
+ rv += "\nSee MacPython Package Manager help page."
+ return rv
# Check whether we can write the installation directory.
# If not, set to the per-user directory, possibly
# creating it, if needed.