about summary refs log tree commit diff
path: root/devscripts
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-11-23 22:21:46 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-11-23 22:21:46 +0100
commitb74e86f48aa6d007b681e2723ff28fe82a49fa9d (patch)
tree660c068ab4ea4835c8311c974b029360d5350875 /devscripts
parent3d36cea4aca303f6bde5b5453f4e3aeec8ee41e1 (diff)
downloadyoutube-dl-b74e86f48aa6d007b681e2723ff28fe82a49fa9d.tar.gz
youtube-dl-b74e86f48aa6d007b681e2723ff28fe82a49fa9d.tar.xz
youtube-dl-b74e86f48aa6d007b681e2723ff28fe82a49fa9d.zip
Fix all PEP8 issues except E501
Diffstat (limited to 'devscripts')
-rwxr-xr-xdevscripts/gh-pages/update-sites.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devscripts/gh-pages/update-sites.py b/devscripts/gh-pages/update-sites.py
index 0d526784d..4a6bb5e35 100755
--- a/devscripts/gh-pages/update-sites.py
+++ b/devscripts/gh-pages/update-sites.py
@@ -22,7 +22,7 @@ def main():
             continue
         elif ie_desc is not None:
             ie_html += ': {}'.format(ie.IE_DESC)
-        if ie.working() == False:
+        if not ie.working():
             ie_html += ' (Currently broken)'
         ie_htmls.append('<li>{}</li>'.format(ie_html))