mirror of
1
0
Fork 0

Fix compatibility with Python 3

This patch removes a stray print statement that was causing problems
with Python 3.
This commit is contained in:
Anish Athalye 2016-01-15 01:21:16 -05:00
parent 47ad7f4d3b
commit 582edd6bd3
1 changed files with 0 additions and 1 deletions

View File

@ -11,7 +11,6 @@ class ConfigReader(object):
try:
_, ext = os.path.splitext(config_file_path)
with open(config_file_path) as fin:
print ext
if ext == '.json':
data = json.load(fin)
else: