X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Futils.py;h=91917fc96da3b1a6ef9fe20ed45e2dcd3ae7ebd2;hb=31b2051e211f3e2691a186d16733cf91eb4ab391;hp=d0606b4bcd3d4706912f753441608dff721d7699;hpb=eb0bdc2c3e112801bbc7517def25647b8a9fe4a4;p=youtube-dl diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index d0606b4bc..91917fc96 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1406,6 +1406,15 @@ def remove_end(s, end): return s +def remove_quotes(s): + if s is None or len(s) < 2: + return s + for quote in ('"', "'", ): + if s[0] == quote and s[-1] == quote: + return s[1:-1] + return s + + def url_basename(url): path = compat_urlparse.urlparse(url).path return path.strip('/').split('/')[-1]