aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/dotsub.py
diff options
context:
space:
mode:
authorJouke Waleson <jouke.waleson@mendix.com>2014-11-23 21:23:05 +0100
committerJouke Waleson <jouke.waleson@mendix.com>2014-11-23 21:23:05 +0100
commit2514d2635e0c8ff0fb72d00a093a849001df2bdd (patch)
treebcb5eefb145d720d03df24178c7bbd1c3e515cfe /youtube_dl/extractor/dotsub.py
parent8bcc875676b56c062a4fdd81763a6adb0fb1390c (diff)
downloadyoutube-dl-2514d2635e0c8ff0fb72d00a093a849001df2bdd.tar.xz
PEP8: E225,E227
Diffstat (limited to 'youtube_dl/extractor/dotsub.py')
-rw-r--r--youtube_dl/extractor/dotsub.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dotsub.py b/youtube_dl/extractor/dotsub.py
index b30d70e7b..638bb33cd 100644
--- a/youtube_dl/extractor/dotsub.py
+++ b/youtube_dl/extractor/dotsub.py
@@ -27,7 +27,7 @@ class DotsubIE(InfoExtractor):
video_id = mobj.group('id')
info_url = "https://dotsub.com/api/media/%s/metadata" % video_id
info = self._download_json(info_url, video_id)
- date = time.gmtime(info['dateCreated'] /1000) # The timestamp is in miliseconds
+ date = time.gmtime(info['dateCreated'] / 1000) # The timestamp is in miliseconds
return {
'id': video_id,