irkerd: Replace Exception.format_exc() with traceback.format_exc()
authorW. Trevor King <wking@tremily.us>
Fri, 7 Mar 2014 04:21:22 +0000 (20:21 -0800)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 11 Mar 2014 04:50:41 +0000 (00:50 -0400)
commit19f7fd76087c68e9b318120e1351fd6543e8cdb2
treea40d4875bb29cedea656fedc9b3c4ac055db7ce9
parente29c46a94edfb6f3ca7ef61cb2d200c359bd7755
irkerd: Replace Exception.format_exc() with traceback.format_exc()

The former was giving me:

  Traceback (most recent call last):
    File "/usr/lib64/python3.3/threading.py", line 901, in _bootstrap_inner
      self.run()
    File "/usr/lib64/python3.3/threading.py", line 858, in run
      self._target(*self._args, **self._kwargs)
    File "./irkerd", line 637, in dequeue
      LOG.debug(e.format_exc())
  AttributeError: 'TypeError' object has no attribute 'format_exc'

In Python 3.3.4.
irkerd