From 27866d211d31ecdcfa57735bb731d0ec40178778 Mon Sep 17 00:00:00 2001 From: Nicolas Koch Date: Wed, 3 Dec 2014 03:47:38 +0000 Subject: [PATCH] fix import order --- youtube_dl/extractor/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 726ff6ab1..61c523acd 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -1,6 +1,5 @@ from __future__ import unicode_literals -from .theoffice import TheOfficeIE from .abc import ABCIE from .academicearth import AcademicEarthCourseIE from .addanime import AddAnimeIE @@ -392,6 +391,7 @@ from .telemb import TeleMBIE from .tenplay import TenPlayIE from .testurl import TestURLIE from .tf1 import TF1IE +from .theoffice import TheOfficeIE from .theonion import TheOnionIE from .theplatform import ThePlatformIE from .thesixtyone import TheSixtyOneIE