Comment 101 for bug 192992

Revision history for this message
Olivier Samyn (olivier-oleastre) wrote :

I got also some troubles today once updating my fresh Hardy installation.

First step, I made to resolve this issue is to install Python 2.4.
It seems pycentral crashes if a packages specify a python version that is not installed.

After that I got an error when trying to update jockey-common.
This one comes from the debugging message expecting an int and it is given a string and an int.

Quick patch:
--- pycentral.old 2008-02-19 22:26:53.000000000 +0100
+++ pycentral 2008-02-19 22:27:01.000000000 +0100
@@ -623,7 +623,7 @@
             rt = get_runtime_for_version(version)
             rt.byte_compile(files, bc_option, exclude_regex)
         if self.private_files:
- logging.debug("bc private (%d files)" %
+ logging.debug("bc private v%s (%d files)" %
                           (self.default_runtime.version, len(self.private_files)))
             rt = self.default_runtime
             rt.byte_compile(self.private_files, bc_option, exclude_regex)