Update scc.py

This commit is contained in:
tehspede 2014-04-23 00:41:01 +03:00
parent 4eb9000676
commit 5b713f0262
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ class SCCProvider(generic.TorrentProvider):
headers.update({'user-agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'})
try:
# Remove double-slashes from url
# Remove double-slashes from url
parsed = list(urlparse.urlparse(url))
parsed[2] = re.sub("/{2,}", "/", parsed[2]) # replace two or more / with one
url = urlparse.urlunparse(parsed)