Credit @haricharan for einthusan (#3755)
[youtube-dl] / youtube_dl / __init__.py
index cc0a4071fe662bb7d85555a0c002c90431de0e54..871ddead9e83ee2de91713b4b1a0828b21d96450 100644 (file)
@@ -75,6 +75,7 @@ __authors__  = (
     'Ole Ernst',
     'Aaron McDaniel (mcd1992)',
     'Magnus Kolstad',
+    'Hari Padmanaban',
 )
 
 __license__ = 'Public Domain'
@@ -86,6 +87,9 @@ import random
 import sys
 
 
+from .options import (
+    parseOpts,
+)
 from .utils import (
     compat_getpass,
     compat_print,
@@ -94,7 +98,6 @@ from .utils import (
     decodeOption,
     DownloadError,
     MaxDownloadsReached,
-    parseOpts,
     preferredencoding,
     read_batch_urls,
     SameFileError,