Skip to content

Commit

Permalink
Merge pull request #337 from ralphbean/feature/fix-die
Browse files Browse the repository at this point in the history
Fix messed up logging in die().
  • Loading branch information
ralphbean authored Jun 26, 2016
2 parents cf65e34 + 48bcea1 commit 029ae18
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bugwarrior/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,10 @@ def load_example_rc():


def die(error_msg):
log.critical(
error_template,
log.critical(error_template.format(
error_msg=error_msg,
example=load_example_rc(),
)
))
sys.exit(1)


Expand Down

0 comments on commit 029ae18

Please sign in to comment.