[extractor/common] PEP8
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 25 Jul 2014 08:43:03 +0000 (10:43 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 25 Jul 2014 08:43:03 +0000 (10:43 +0200)
youtube_dl/extractor/common.py

index 88f12797c6c351ab8eae943d183c81bc90028e8e..52c00186e458fd131e28eb178ea09df8e9d9ce0d 100644 (file)
@@ -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