I found that adding the following code fixed the problem (which only
occurs during an error):

--- pycentral.old       2007-07-19 14:56:24.000000000 -0500
+++ pycentral.new       2007-07-19 14:56:17.000000000 -0500
@@ -1096,6 +1096,11 @@
        self.rtname = self.args[1]
        packages = read_dpkg_status()
        self.needed_packages = []
+        self.runtime = None
+        for rt in get_installed_runtimes():
+            if rt.name == self.rtname:
+                self.runtime = rt
+                break
        for pkgname, vstring in packages:
            if vstring.find('current') == -1:
                continue

Not sure how correct it is.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to