diff options
| author | Jouke Waleson <jouke.waleson@mendix.com> | 2014-11-23 21:23:05 +0100 | 
|---|---|---|
| committer | Jouke Waleson <jouke.waleson@mendix.com> | 2014-11-23 21:23:05 +0100 | 
| commit | 2514d2635e0c8ff0fb72d00a093a849001df2bdd (patch) | |
| tree | bcb5eefb145d720d03df24178c7bbd1c3e515cfe /youtube_dl/extractor/sohu.py | |
| parent | 8bcc875676b56c062a4fdd81763a6adb0fb1390c (diff) | |
PEP8: E225,E227
Diffstat (limited to 'youtube_dl/extractor/sohu.py')
| -rw-r--r-- | youtube_dl/extractor/sohu.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/sohu.py b/youtube_dl/extractor/sohu.py index 875d09faa..0348e7460 100644 --- a/youtube_dl/extractor/sohu.py +++ b/youtube_dl/extractor/sohu.py @@ -69,7 +69,7 @@ class SohuIE(InfoExtractor):                          (allot, prot, clipsURL[i], su[i]))              part_str = self._download_webpage(                  part_url, video_id, -                note=u'Downloading part %d of %d' % (i +1, part_count)) +                note=u'Downloading part %d of %d' % (i + 1, part_count))              part_info = part_str.split('|')              video_url = '%s%s?key=%s' % (part_info[0], su[i], part_info[3]) | 
