mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
make _ always be the gettext function, nothing else
This avoids hard bugs where the _() function gets overidden by a str or something else.
This commit is contained in:
parent
dd6d4b2012
commit
ffc91e301a
4 changed files with 7 additions and 7 deletions
|
@ -185,7 +185,7 @@ def scan_source(build_dir, build):
|
|||
continue
|
||||
|
||||
path_in_build_dir = os.path.relpath(filepath, build_dir)
|
||||
_, ext = common.get_extension(path_in_build_dir)
|
||||
_ignored, ext = common.get_extension(path_in_build_dir)
|
||||
|
||||
if ext == 'so':
|
||||
count += handleproblem('shared library', path_in_build_dir, filepath)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue