Stop checking for file to be python2/3 compatible
This commit is contained in:
parent
8e44c5126e
commit
5ba751d89b
|
@ -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),
|
||||||
|
|
Loading…
Reference in New Issue