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

This commit is contained in:
Jack Jansen 2003-04-16 12:40:21 +00:00
parent 64509b33a7
commit 36b5198381
1 changed files with 3 additions and 1 deletions

View File

@ -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.