about summary refs log tree commit diff
path: root/devscripts
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-21 14:55:13 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-21 14:55:13 +0100
commit8fb3ac3649ca7df6f328971f58afa84dd9d05cc6 (patch)
treec6523ec060f7c6410aeac064f48a3f28fbb78196 /devscripts
parent77b2986b5b0246234b72ae9dd78fb40f9d37374f (diff)
downloadyoutube-dl-8fb3ac3649ca7df6f328971f58afa84dd9d05cc6.tar.gz
youtube-dl-8fb3ac3649ca7df6f328971f58afa84dd9d05cc6.tar.xz
youtube-dl-8fb3ac3649ca7df6f328971f58afa84dd9d05cc6.zip
PEP8: W503
Diffstat (limited to 'devscripts')
-rw-r--r--devscripts/check-porn.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/devscripts/check-porn.py b/devscripts/check-porn.py
index 216282712..6a5bd9eda 100644
--- a/devscripts/check-porn.py
+++ b/devscripts/check-porn.py
@@ -45,12 +45,12 @@ for test in get_testcases():
 
         RESULT = ('.' + domain + '\n' in LIST or '\n' + domain + '\n' in LIST)
 
-    if RESULT and ('info_dict' not in test or 'age_limit' not in test['info_dict']
-                   or test['info_dict']['age_limit'] != 18):
+    if RESULT and ('info_dict' not in test or 'age_limit' not in test['info_dict'] or
+                   test['info_dict']['age_limit'] != 18):
         print('\nPotential missing age_limit check: {0}'.format(test['name']))
 
-    elif not RESULT and ('info_dict' in test and 'age_limit' in test['info_dict']
-                         and test['info_dict']['age_limit'] == 18):
+    elif not RESULT and ('info_dict' in test and 'age_limit' in test['info_dict'] and
+                         test['info_dict']['age_limit'] == 18):
         print('\nPotential false negative: {0}'.format(test['name']))
 
     else: