Skip to content

Commit

Permalink
pep8 empty exception fix
Browse files Browse the repository at this point in the history
  • Loading branch information
styk-tv committed Nov 28, 2017
1 parent 5251084 commit a04be22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ makes these decisions.





2 changes: 1 addition & 1 deletion madcore/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def delete_plugin_job_params(self, plugin_name, job_names, job_type):
try:
option_name = '{job_type}_{job_name}'.format(job_type=job_type, job_name=job_name)
self.remove_option(plugin_name, option_name)
except:
except Exception:
pass

def delete_global_params(self, section='global_params'):
Expand Down

0 comments on commit a04be22

Please sign in to comment.