Kaydet (Commit) 36b51983 authored tarafından Jack Jansen's avatar Jack Jansen

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

üst 64509b33
...@@ -230,7 +230,9 @@ class PimpInterface: ...@@ -230,7 +230,9 @@ class PimpInterface:
try: try:
self.pimpdb.appendURL(url) self.pimpdb.appendURL(url)
except IOError, arg: 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. # Check whether we can write the installation directory.
# If not, set to the per-user directory, possibly # If not, set to the per-user directory, possibly
# creating it, if needed. # 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