diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-06-04 22:12:05 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-06-04 22:12:05 +0800 |
commit | 453a1617aac6e8000ed947cad7d88817c5740ede (patch) | |
tree | 5e156f5aca9605685258a711118b65969ba1c226 /youtube_dl/downloader/dash.py | |
parent | b9258c61789388b49792ebdceb5d804217a36da5 (diff) |
[downloader/dash] Reorder imports
Diffstat (limited to 'youtube_dl/downloader/dash.py')
-rw-r--r-- | youtube_dl/downloader/dash.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/downloader/dash.py b/youtube_dl/downloader/dash.py index 18eca2c04..5f14658ba 100644 --- a/youtube_dl/downloader/dash.py +++ b/youtube_dl/downloader/dash.py @@ -1,9 +1,10 @@ from __future__ import unicode_literals -from .common import FileDownloader -from ..compat import compat_urllib_request import re +from .common import FileDownloader +from ..compat import compat_urllib_request + class DashSegmentsFD(FileDownloader): """ |