Use relative imports for python3 compatibility

This commit is contained in:
Sergi Almacellas Abellana 2016-08-12 09:54:03 +02:00
parent 211f7295f9
commit b4315151bd
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from record import Record
from .record import Record
from .fields import Char, Const, Integer, Number, Numeric
from .fields import SIGN_N

View file

@ -19,7 +19,7 @@
#
##############################################################################
from record import Record
from .record import Record
from .fields import *