From: rrooij Date: Tue, 5 May 2015 07:01:07 +0000 (+0200) Subject: [southparkde] Fix naming inconsistency X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=3408f6e64a7438dbc1bcc087a00e8540ef660eb3;p=youtube-dl [southparkde] Fix naming inconsistency The class was first called 'SouthparkDe'. It is now changed to 'SouthParkDe' to match the name of the other extractors. --- diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index b042e9215..5dfa781f8 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -484,7 +484,7 @@ from .soundgasm import ( from .southpark import ( SouthParkIE, SouthParkEsIE, - SouthparkDeIE, + SouthParkDeIE, SouthParkNlIE ) from .space import SpaceIE diff --git a/youtube_dl/extractor/southpark.py b/youtube_dl/extractor/southpark.py index ebcd2ed04..2b12f2ad3 100644 --- a/youtube_dl/extractor/southpark.py +++ b/youtube_dl/extractor/southpark.py @@ -32,7 +32,7 @@ class SouthParkEsIE(SouthParkIE): }] -class SouthparkDeIE(SouthParkIE): +class SouthParkDeIE(SouthParkIE): IE_NAME = 'southpark.de' _VALID_URL = r'https?://(?:www\.)?(?Psouthpark\.de/(?:clips|alle-episoden)/(?P.+?)(\?|#|$))' _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'