issue #477: testlib: Py2.4 did not have BaseException.

issue510
David Wilson 5 years ago
parent 5135ff9068
commit 83aff538b3

@ -32,6 +32,11 @@ try:
except ImportError:
from io import StringIO
try:
BaseException
except NameError:
BaseException = Exception
LOG = logging.getLogger(__name__)
DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')

Loading…
Cancel
Save