Stop checking for file to be python2/3 compatible

This commit is contained in:
Davis Goglin 2016-03-16 15:24:08 -07:00 committed by Davis Goglin
parent 8e44c5126e
commit 5ba751d89b
1 changed files with 3 additions and 3 deletions

View File

@ -43,11 +43,11 @@ class Config(object):
) )
try: try:
if isinstance(config_path, file): if isinstance(config_path, str):
config = yaml.safe_load(config_path)
else:
with open(config_path, 'rb') as f: with open(config_path, 'rb') as f:
config = yaml.safe_load(f) config = yaml.safe_load(f)
else:
config = yaml.safe_load(config_path)
except EnvironmentError: except EnvironmentError:
raise exceptions.ConfigNotFoundError('Couldn\'t read config at {config_path}'.format( raise exceptions.ConfigNotFoundError('Couldn\'t read config at {config_path}'.format(
config_path=str(config_path), config_path=str(config_path),