diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2015-01-30 03:45:06 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2015-01-30 03:45:06 +0100 | 
| commit | 83fddfd493ffcbb7256f0f1a467cc48ca2191090 (patch) | |
| tree | 33e07feff34b06bfce42cf2d8e3559be981a8687 | |
| parent | 1798791df11920928818161c48fc2b12334e1e52 (diff) | |
[dctp] PEP8
| -rw-r--r-- | youtube_dl/extractor/dctp.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/dctp.py b/youtube_dl/extractor/dctp.py index dbedafa7d..6ed354379 100644 --- a/youtube_dl/extractor/dctp.py +++ b/youtube_dl/extractor/dctp.py @@ -13,8 +13,9 @@ class DctpTvIE(InfoExtractor):              'id': '1324',              'display_id': 'videoinstallation-fuer-eine-kaufhausfassade',              'ext': 'flv', -            'title': 'Videoinstallation für eine Kaufhausfassade'} +            'title': 'Videoinstallation für eine Kaufhausfassade'          } +    }      def _real_extract(self, url):          video_id = self._match_id(url) @@ -54,4 +55,3 @@ class DctpTvIE(InfoExtractor):              'ext': 'flv',              'display_id': video_id          } -  | 
