1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

Fix variable name

This commit is contained in:
Jochen Sprickerhof 2022-04-28 16:01:16 +02:00 committed by Hans-Christoph Steiner
parent 91320fa10e
commit 9eaab6050e

View File

@ -109,7 +109,7 @@ def get_embedded_classes(apkfile, depth=0):
:return: set of Java classes names as string
"""
if depth > 10: # zipbomb protection
logging.error(_('max recursion depth in zip file reached: %s') % apk_zip)
logging.error(_('max recursion depth in zip file reached: %s') % apkfile)
return set()
apk_regex = re.compile(r'.*\.apk')