diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 22:21:46 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 22:21:46 +0100 |
commit | b74e86f48aa6d007b681e2723ff28fe82a49fa9d (patch) | |
tree | 660c068ab4ea4835c8311c974b029360d5350875 /devscripts/gh-pages/update-sites.py | |
parent | 3d36cea4aca303f6bde5b5453f4e3aeec8ee41e1 (diff) |
Fix all PEP8 issues except E501
Diffstat (limited to 'devscripts/gh-pages/update-sites.py')
-rwxr-xr-x | devscripts/gh-pages/update-sites.py | 2 |
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)) |