fix
This commit is contained in:
parent
0d4fe0f230
commit
423c04d870
1 changed files with 1 additions and 1 deletions
|
@ -591,7 +591,7 @@ while True:
|
|||
multiline("(" + nick + ") [HTTP " + str(e.status_code) + "]", channel)
|
||||
except rex.SSLError as ex:
|
||||
multiline("(" + nick + ") [SSL Error: " + str(ex.message) + "]", channel)
|
||||
except:
|
||||
except Exception as ex:
|
||||
multiline("(" + nick + ") [Request error: " + str(ex.message) + "]", channel)
|
||||
elif i[:7] == "http://":
|
||||
e = get(i, headers=headers, timeout=10)
|
||||
|
|
Loading…
Reference in a new issue