Fix compatibility with Python 3
This patch removes a stray print statement that was causing problems with Python 3.
This commit is contained in:
parent
47ad7f4d3b
commit
582edd6bd3
1 changed files with 0 additions and 1 deletions
|
@ -11,7 +11,6 @@ class ConfigReader(object):
|
||||||
try:
|
try:
|
||||||
_, ext = os.path.splitext(config_file_path)
|
_, ext = os.path.splitext(config_file_path)
|
||||||
with open(config_file_path) as fin:
|
with open(config_file_path) as fin:
|
||||||
print ext
|
|
||||||
if ext == '.json':
|
if ext == '.json':
|
||||||
data = json.load(fin)
|
data = json.load(fin)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue