Skip to content

Commit

Permalink
added newline after error output
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-pollak committed Jan 25, 2021
1 parent ec55fbb commit cd8ae2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def login():
login()
scrape(driver)
except ValueError as e:
print('ERROR: %s' % e)
print('ERROR: %s\n' % e)
except KeyboardInterrupt:
print('Exiting')
sys.exit()
Expand Down

0 comments on commit cd8ae2a

Please sign in to comment.