Skip to content

Commit

Permalink
Explicit error to string conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
rafelafrance committed Jan 19, 2018
1 parent b9ee180 commit eeba1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atram.py
Expand Up @@ -42,7 +42,7 @@ def assemble(args):
except (TimeoutError, RuntimeError):
pass
except Exception as err: # pylint: disable=broad-except
log.error('Exception: ' + err)
log.error('Exception: {}'.format(err))

db.aux_detach(db_conn)

Expand Down

0 comments on commit eeba1fe

Please sign in to comment.