aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-26 19:40:33 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-26 19:40:33 +0600
commiteedb7ba5364213b5f9dc773f70403ea028a44ab0 (patch)
treedeca11e894fbe835e668d5c4affdc96420a75b0e /youtube_dl/YoutubeDL.py
parentdcf77cf1a74ebcf7def71aecf55b8641e4645835 (diff)
downloadyoutube-dl-eedb7ba5364213b5f9dc773f70403ea028a44ab0.tar.xz
[YoutubeDL] Sort imports
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 33c269f9c..53a36c145 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -39,6 +39,8 @@ from .compat import (
compat_urllib_request_DataHandler,
)
from .utils import (
+ age_restricted,
+ args_to_str,
ContentTooShortError,
date_from_str,
DateRange,
@@ -58,10 +60,12 @@ from .utils import (
PagedList,
parse_filesize,
PerRequestProxyHandler,
- PostProcessingError,
platform_name,
+ PostProcessingError,
preferredencoding,
+ prepend_extension,
render_table,
+ replace_extension,
SameFileError,
sanitize_filename,
sanitize_path,
@@ -76,10 +80,6 @@ from .utils import (
write_string,
YoutubeDLCookieProcessor,
YoutubeDLHandler,
- prepend_extension,
- replace_extension,
- args_to_str,
- age_restricted,
)
from .cache import Cache
from .extractor import get_info_extractor, gen_extractors