This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kuiper
Recipients kuiper
Date 2012-10-31.00:09:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351642153.65.0.00343224829929.issue16368@psf.upfronthosting.co.za>
In-reply-to
Content
This error comes from the logging module when a message is logged, but only when I also import another module which does use logging at all:

Traceback (most recent call last):
  File "/usr/lib/python2.6/logging/__init__.py", line 776, in emit
    msg = self.format(record)
  File "/usr/lib/python2.6/logging/__init__.py", line 654, in format
    return fmt.format(record)
  File "/usr/lib/python2.6/logging/__init__.py", line 437, in format
    if string.find(self._fmt,"%(asctime)") >= 0:
  File "/usr/lib/python2.6/string.py", line 361, in find
    return s.find(*args)
AttributeError: 'int' object has no attribute 'find'

The module source is attached.  Some of it's submodules were built with f2py.
History
Date User Action Args
2012-10-31 00:09:16kuipersetrecipients: + kuiper
2012-10-31 00:09:13kuipersetmessageid: <1351642153.65.0.00343224829929.issue16368@psf.upfronthosting.co.za>
2012-10-31 00:09:13kuiperlinkissue16368 messages
2012-10-31 00:09:13kuipercreate