PEP8: E225,E227
[youtube-dl] / youtube_dl / extractor / dotsub.py
index b30d70e7b1d88413f81c3e8ba540c9399d98f600..638bb33cd81b53fdc2c4bbc31f300a098fb57652 100644 (file)
@@ -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,