commit: c3415d1bac09acfc2bd26e9187632a837628c10d
parent 36f35428831788d8c8f074e96bffa733dd094dae
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Fri, 25 Jul 2014 10:43:03 +0200
[extractor/common] PEP8
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
@@ -373,7 +373,8 @@ class InfoExtractor(object):
else:
for p in pattern:
mobj = re.search(p, string, flags)
- if mobj: break
+ if mobj:
+ break
if os.name != 'nt' and sys.stderr.isatty():
_name = u'\033[0;34m%s\033[0m' % name