Logging module: problem with some mapping keys
Peter Otten
__peter__ at web.de
Thu Dec 14 12:41:47 EST 2006
Tekkaman wrote:
> lib is a symlink to lib64
So my initial diagnosis was correct. Unfortunately I can no longer recommend
that you remove the symlink...
Putting /usr/lib64/python2.4 as the first entry into your
PYTHONPATH
environment variable might fix the problem (the idea is
that /usr/lib64/python2.4 precedes /usr/lib/python2.4 in sys.path and is
therefore used for the import of the logging package).
Peter
More information about the Python-list
mailing list