mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-12-24 08:45:27 +00:00
Merge pull request #1997 from rg3/simplify-url_basename
Simplify url_basename
This commit is contained in:
commit
f5567e401c
1 changed files with 2 additions and 4 deletions
|
@ -1092,7 +1092,5 @@ def remove_start(s, start):
|
|||
|
||||
|
||||
def url_basename(url):
|
||||
m = re.match(r'(?:https?:|)//[^/]+/(?:[^?#]+/)?([^/?#]+)/?(?:[?#]|$)', url)
|
||||
if not m:
|
||||
return u''
|
||||
return m.group(1)
|
||||
path = compat_urlparse.urlparse(url).path
|
||||
return path.strip(u'/').split(u'/')[-1]
|
||||
|
|
Loading…
Reference in a new issue