[nerdcubed] Style fixes

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-12-21 15:22:30 +01:00
parent 653d14e2f9
commit 1f809a8560
1 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class NerdCubedFeedIE(InfoExtractor):
def _real_extract(self, url):
feed = self._download_json(url, url, "Downloading NerdCubed JSON feed")
entries = [{
'_type': 'url',
'title': feed_entry['title'],
@ -33,4 +33,3 @@ class NerdCubedFeedIE(InfoExtractor):
'id': 'nerdcubed-feed',
'entries': entries,
}