mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
fix PEP8 "E712 comparison to True should be 'if cond is True:' or 'if cond:'"
This commit is contained in:
parent
d8bae963a9
commit
fcca0ddb1f
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ def main():
|
|||
logging.critical("The only commands currently supported are 'init' and 'update'")
|
||||
sys.exit(1)
|
||||
|
||||
if config.get('nonstandardwebroot') == True:
|
||||
if config.get('nonstandardwebroot') is True:
|
||||
standardwebroot = False
|
||||
else:
|
||||
standardwebroot = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue