mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
Fix flake8 E275 missing whitespace after keyword
This commit is contained in:
parent
42ef7c3406
commit
eb79522a36
6 changed files with 11 additions and 11 deletions
|
@ -133,7 +133,7 @@ elif os.path.exists('makebs.config.py'):
|
|||
# this is the old name for the config file
|
||||
exec(compile(open('makebs.config.py').read(), 'makebs.config.py', 'exec'), config)
|
||||
if '__builtins__' in config:
|
||||
del(config['__builtins__']) # added by compile/exec
|
||||
del config['__builtins__'] # added by compile/exec
|
||||
logging.debug("makebuildserver.config.py parsed -> %s", json.dumps(config, indent=4, sort_keys=True))
|
||||
if config['basebox'] == BASEBOX_DEFAULT and 'basebox_version' not in config:
|
||||
config['basebox_version'] = BASEBOX_VERSION_DEFAULT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue