From dc03aa67ad6bf9ea04cf180c9d200fef07c7d5db Mon Sep 17 00:00:00 2001 From: Nick Triller Date: Wed, 20 Jul 2016 17:36:36 +0200 Subject: [PATCH] Fixed indentation in extractors package constructor (__init__.py) --- 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 82c3983f3..8d40862fe 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -43,4 +43,4 @@ def list_extractors(age_limit): def get_info_extractor(ie_name): """Returns the info extractor class with the given ie_name""" -return globals()[ie_name + 'IE'] \ No newline at end of file + return globals()[ie_name + 'IE'] \ No newline at end of file