Use Pythabsoluteon 2.4 compatible module import
Python 2.4 does not support explicit relative imports. They were added at Python 2.5, along with `from __future__ import absolute_import`. On 2.x this will mean the import is first (implicitly) tried relative, but on 3.x it will always be tried absolute. Fixes #92
Showing
Please register or sign in to comment