Skip to content

Commit

Permalink
Fix printing error message in py3
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed May 6, 2017
1 parent 778f4d3 commit 9ce6cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf417gen/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def do_encode(args):
bg_color=args.bg_color,
)
except Exception as e:
print_err(e.message)
print_err(str(e))
return

if args.output:
Expand Down

0 comments on commit 9ce6cca

Please sign in to comment.