[options] Correct option usage
parent
34a741a8ec
commit
2daabe4992
|
@ -86,6 +86,9 @@ import random
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
from .options import (
|
||||||
|
parseOpts,
|
||||||
|
)
|
||||||
from .utils import (
|
from .utils import (
|
||||||
compat_getpass,
|
compat_getpass,
|
||||||
compat_print,
|
compat_print,
|
||||||
|
@ -94,7 +97,6 @@ from .utils import (
|
||||||
decodeOption,
|
decodeOption,
|
||||||
DownloadError,
|
DownloadError,
|
||||||
MaxDownloadsReached,
|
MaxDownloadsReached,
|
||||||
parseOpts,
|
|
||||||
preferredencoding,
|
preferredencoding,
|
||||||
read_batch_urls,
|
read_batch_urls,
|
||||||
SameFileError,
|
SameFileError,
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
import optparse
|
import optparse
|
||||||
import shlex
|
import shlex
|
||||||
|
|
Loading…
Reference in New Issue