style cleanup: pep8

This commit is contained in:
2012-10-08 08:28:05 +00:00
parent f299813bfa
commit 9fa36b12cc
38 changed files with 123 additions and 127 deletions

View File

@@ -1084,10 +1084,10 @@ class USERPREF_PT_addons(Panel):
continue
# check if addon should be visible with current filters
if ((filter == "All") or
(filter == info["category"]) or
(filter == "Enabled" and is_enabled) or
(filter == "Disabled" and not is_enabled)):
if ((filter == "All") or
(filter == info["category"]) or
(filter == "Enabled" and is_enabled) or
(filter == "Disabled" and not is_enabled)):
if search and search not in info["name"].lower():
if info["author"]: