Browse Source

[openfilm] Fix compat_urllib_parse_unquote_plus import

Sergey M․ 10 years ago
parent
commit
7bd42d0d96
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/openfilm.py

+ 1 - 1
youtube_dl/extractor/openfilm.py

@@ -3,9 +3,9 @@ from __future__ import unicode_literals
 import json
 import json
 
 
 from .common import InfoExtractor
 from .common import InfoExtractor
+from ..compat import compat_urllib_parse_unquote_plus
 from ..utils import (
 from ..utils import (
     parse_iso8601,
     parse_iso8601,
-    compat_urllib_parse_unquote_plus,
     parse_age_limit,
     parse_age_limit,
     int_or_none,
     int_or_none,
 )
 )