mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
fix PEP9 E713 test for membership should be 'not in'
This commit is contained in:
parent
dfca237329
commit
5780c14df2
2 changed files with 2 additions and 2 deletions
|
|
@ -157,7 +157,7 @@ def fill_config_defaults(thisconfig):
|
|||
thisconfig['java_paths'][m.group(1)] = d
|
||||
|
||||
for java_version in ('7', '8', '9'):
|
||||
if not java_version in thisconfig['java_paths']:
|
||||
if java_version not in thisconfig['java_paths']:
|
||||
continue
|
||||
java_home = thisconfig['java_paths'][java_version]
|
||||
jarsigner = os.path.join(java_home, 'bin', 'jarsigner')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue