Commit 36b51983 authored by Jack Jansen's avatar Jack Jansen

Refer people to the help pages on failure to load the database.

parent 64509b33
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment