src/utils/web: Add another "UNKNOWN_HOST" code to catch.

This commit is contained in:
James Vega 2005-10-14 12:59:47 +00:00
parent 9c34b231aa
commit 9cb1669b5f
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ def strError(e):
return TIMED_OUT
elif n == 104:
return RESET_BY_PEER
elif n in (8, 7, 3, 2, -2):
elif n in (8, 7, 3, 2, -2, -3):
return UNKNOWN_HOST
elif n == 403:
return FORBIDDEN