Browse Source

[lybsyn] pep8: add space around operator

totalwebcasting
Jaime Marquínez Ferrándiz 9 years ago
parent
commit
336d19044c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/libsyn.py

+ 1
- 1
youtube_dl/extractor/libsyn.py View File

@ -36,7 +36,7 @@ class LibsynIE(InfoExtractor):
episode_title = self._search_regex(
r'<h3>([^<]+)</h3>', webpage, 'title', default=None)
title = '%s - %s' %(podcast_title, episode_title) if podcast_title else episode_title
title = '%s - %s' % (podcast_title, episode_title) if podcast_title else episode_title
description = self._html_search_regex(
r'<div id="info_text_body">(.+?)</div>', webpage,


Loading…
Cancel
Save