[utils] Fix url_basename
This commit is contained in:
parent
cecaaf3f58
commit
d6c7a367e8
2 changed files with 4 additions and 1 deletions
|
@ -1087,7 +1087,7 @@ def remove_start(s, start):
|
|||
|
||||
|
||||
def url_basename(url):
|
||||
m = re.match(r'(?:https?:|)//[^/]+/(?:[^/?#]+/)?([^/?#]+)/?(?:[?#]|$)', url)
|
||||
m = re.match(r'(?:https?:|)//[^/]+/(?:[^?#]+/)?([^/?#]+)/?(?:[?#]|$)', url)
|
||||
if not m:
|
||||
return u''
|
||||
return m.group(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue