I can't run the unit tests on python3
I noticed there are a lot of print keywords throughout the code. I'd suggest using the logging module instead.
To do:
- fix print statements with
from __future__ import print_function or replace with logging
- fix imports to be relative (might also require project restructuring)
- fix incompatible typs (
basestring, long, etc.)
I can't run the unit tests on python3
I noticed there are a lot of print keywords throughout the code. I'd suggest using the
loggingmodule instead.To do:
from __future__ import print_functionor replace withloggingbasestring,long, etc.)