mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[lybsyn] pep8: add space around operator
This commit is contained in:
parent
7866c9e173
commit
336d19044c
@ -36,7 +36,7 @@ def _real_extract(self, url):
|
||||
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…
Reference in New Issue
Block a user