1
Scripting Languages / Re: [Python]FuzzyWeb
« on: June 24, 2013, 03:28:36 pm »
I think here you can change
Code: (Python) [Select]
"""
res=con.getresponse()
if str(res.status)=="200":
"""
->
"""
res=con.getresponse()
if res.status==200:
"""
I think U Know