Browse Source

remove unused imports

totalwebcasting
Philipp Hagemeister 10 years ago
parent
commit
b244b5c3f9
4 changed files with 1 additions and 5 deletions
  1. +1
    -1
      youtube_dl/compat.py
  2. +0
    -1
      youtube_dl/extractor/arte.py
  3. +0
    -1
      youtube_dl/extractor/comedycentral.py
  4. +0
    -2
      youtube_dl/extractor/goldenmoustache.py

+ 1
- 1
youtube_dl/compat.py View File

@ -306,7 +306,7 @@ def workaround_optparse_bug9161():
og = optparse.OptionGroup(op, 'foo')
try:
og.add_option('-t')
except TypeError as te:
except TypeError:
real_add_option = optparse.OptionGroup.add_option
def _compat_add_option(self, *args, **kwargs):


+ 0
- 1
youtube_dl/extractor/arte.py View File

@ -5,7 +5,6 @@ import re
from .common import InfoExtractor
from ..utils import (
ExtractorError,
find_xpath_attr,
unified_strdate,
get_element_by_id,


+ 0
- 1
youtube_dl/extractor/comedycentral.py View File

@ -2,7 +2,6 @@ from __future__ import unicode_literals
import re
from .common import InfoExtractor
from .mtv import MTVServicesInfoExtractor
from ..utils import (
compat_str,


+ 0
- 2
youtube_dl/extractor/goldenmoustache.py View File

@ -1,9 +1,7 @@
from __future__ import unicode_literals
import re
from .common import InfoExtractor
from ..utils import (
parse_duration,
int_or_none,
)


Loading…
Cancel
Save