aboutsummaryrefslogtreecommitdiffstats
path: root/anteater/src/get_lists.py
diff options
context:
space:
mode:
Diffstat (limited to 'anteater/src/get_lists.py')
-rw-r--r--anteater/src/get_lists.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/anteater/src/get_lists.py b/anteater/src/get_lists.py
index b7b9aea..e27335a 100644
--- a/anteater/src/get_lists.py
+++ b/anteater/src/get_lists.py
@@ -13,15 +13,17 @@
Gathers various values from the gate check yaml file and return them to the
calling instance
"""
+from __future__ import absolute_import
import anteater.utils.anteater_logger as antlog
-import ConfigParser
+import six.moves.configparser
import copy
import os
import yaml
import re
-config = ConfigParser.RawConfigParser()
+
+config = six.moves.configparser.RawConfigParser()
config.read('anteater.conf')
logger = antlog.Logger(__name__).getLogger()
master_list = config.get('config', 'master_list')