diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-06-21 14:57:13 -0700 |
---|---|---|
committer | Ross Brattain <ross.b.brattain@intel.com> | 2017-06-28 23:08:14 -0700 |
commit | eceefe7114bc5d0fc94ac77ee4e510c94c1a76bf (patch) | |
tree | cf24e060a2972701c3b6788ed0ed748c8168fe0f /anteater/utils | |
parent | f2149d0366a2dd7add11d017679307256632d372 (diff) |
add Python3 support with six
switch to relative imports for package file
use absolute imports in main
this requires renaming anteater.py to main.py
to avoid absolute import name conflict
update setup.py to indicate python 3.4 support
Change-Id: I0fcaf8a9825557962dc98a6a4eef490051fbbfb0
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'anteater/utils')
-rw-r--r-- | anteater/utils/__init__.py | 1 | ||||
-rw-r--r-- | anteater/utils/anteater_logger.py | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/anteater/utils/__init__.py b/anteater/utils/__init__.py index 896994c..1db8868 100644 --- a/anteater/utils/__init__.py +++ b/anteater/utils/__init__.py @@ -1,3 +1,4 @@ +from __future__ import absolute_import import pkg_resources try: diff --git a/anteater/utils/anteater_logger.py b/anteater/utils/anteater_logger.py index 1fe705f..785e644 100644 --- a/anteater/utils/anteater_logger.py +++ b/anteater/utils/anteater_logger.py @@ -9,11 +9,14 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## -import ConfigParser +from __future__ import absolute_import + import logging + import os +import six.moves.configparser -config = ConfigParser.RawConfigParser() +config = six.moves.configparser.RawConfigParser() config.read('anteater.conf') anteater_log = config.get('config', 'anteater_log') |