mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
Merge branch 'fix_pathlib' into 'master'
[lint] convert path to Path first See merge request fdroid/fdroidserver!953
This commit is contained in:
commit
a21c2c5ff1
@ -530,6 +530,7 @@ def check_extlib_dir(apps):
|
||||
for app in apps:
|
||||
for build in app.get('Builds', []):
|
||||
for path in build.extlibs:
|
||||
path = Path(path)
|
||||
if path not in extlib_files:
|
||||
yield _(
|
||||
"{appid}: Unknown extlib {path} in build '{versionName}'"
|
||||
|
Loading…
Reference in New Issue
Block a user