Skip to content

Commit

Permalink
Fix issue with Timeout branch causing TypeError
Browse files Browse the repository at this point in the history
This change will fix the typo added by mistake.
  • Loading branch information
silentlamb committed Apr 21, 2017
1 parent 16f9bf9 commit 1f7d7dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deadlinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_status_code(url, opts):
availibility = True
success = code == requests.codes.ok
except Timeout:
availibility = False,
availibility = False
success = UNKNOWN
except RequestException:
availibility = UNKNOWN
Expand Down

0 comments on commit 1f7d7dc

Please sign in to comment.