Skip to content

Commit

Permalink
Modified the HTTPError message
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosAD committed May 9, 2020
1 parent 02b3339 commit b663de2
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 @@ -39,7 +39,7 @@
except (OSError, IOError) as e:
if e.__class__.__name__ == 'HTTPError' and e.getcode() == 404:
print('Error: {} URL page not found. '.format(table_url) +
'Please contact intelligent human for help.')
'Fix the URL in the Python script, or get someone to help.')
else:
print(e)
exit(-1)
Expand Down

0 comments on commit b663de2

Please sign in to comment.