From: Jack Jansen Date: Wed, 16 Apr 2003 12:40:21 +0000 (+0000) Subject: Refer people to the help pages on failure to load the database. X-Git-Tag: v2.3c1~1171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36b51983812812aba9af7a54aebf18a2770019a7;p=python Refer people to the help pages on failure to load the database. --- diff --git a/Mac/Tools/IDE/PackageManager.py b/Mac/Tools/IDE/PackageManager.py index 47329772ca..de56d59eca 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.