This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Description
Hi,
the setup.py states that backoff should work with python2.7.
But the used NullHandler was introduced in python 3.1: https://docs.python.org/3.2/library/logging.handlers.html?highlight=nullhandler#logging.NullHandler
The error message when trying to install is:
python2.6 setup.py
Traceback (most recent call last):
File "setup.py", line 3, in <module>
import backoff
File "/home/bonko/git/backoff/backoff.py", line 104, in <module>
logger.addHandler(logging.NullHandler())
AttributeError: 'module' object has no attribute 'NullHandler'