1
0
Fork 0

tools/web: fix isURL function

This commit is contained in:
nemunaire 2018-09-25 20:42:51 +02:00
parent 2fd20d9002
commit f1da640a5b
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ from nemubot.exception import IMException
def isURL(url):
"""Return True if the URL can be parsed"""
o = urlparse(_getNormalizedURL(url))
return o.netloc == "" and o.path == ""
return o.netloc != "" and o.path != ""
def _getNormalizedURL(url):