youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit eb0a83986642cf660820b168bd83c8770e3e5ce6
parent 1777d5a952ab8d6728172b0a10afe20f060b432a
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue, 12 Nov 2013 10:36:23 +0100

[common] Simplify og_search_property

Diffstat:
Myoutube_dl/extractor/common.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -322,9 +322,9 @@ class InfoExtractor(object): if name is None: name = 'OpenGraph %s' % prop escaped = self._search_regex(self._og_regex(prop), html, name, flags=re.DOTALL, **kargs) - if not escaped is None: - return unescapeHTML(escaped) - return None + if escaped is None: + return None + return unescapeHTML(escaped) def _og_search_thumbnail(self, html, **kargs): return self._og_search_property('image', html, u'thumbnail url', fatal=False, **kargs)