Skip to content

Commit

Permalink
Merge pull request #14 from jonls/fix-flake
Browse files Browse the repository at this point in the history
Fix flake error: remove bare except
  • Loading branch information
jonls committed Dec 9, 2017
2 parents 7c4b9a5 + da26eeb commit e82ed4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3_deploy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def load_config_file(path):
try:
with open(filepath, 'r') as f:
config = yaml.safe_load(f)
except:
except Exception:
logger.debug('Unable to load config from {}'.format(filepath),
exc_info=True)
else:
Expand Down

0 comments on commit e82ed4a

Please sign in to comment.