Skip to content

Commit

Permalink
Fix parse_resource typo in apkutils usage (#1378)
Browse files Browse the repository at this point in the history
  • Loading branch information
inSilex authored Feb 20, 2024
1 parent ca49d47 commit cf6c164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapadroid/mad_apk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def get_apk_info(downloaded_file: io.BytesIO) -> Tuple[Optional[str], Optional[s
package_version: Optional[str] = None
package_name: Optional[str] = None
try:
apk = apkutils.APK.from_io(downloaded_file).parse_resouce()
apk = apkutils.APK.from_io(downloaded_file).parse_resource()
except Exception as e: # noqa: E722 B001
logger.warning('Unable to parse APK file')
logger.exception(e)
Expand Down

0 comments on commit cf6c164

Please sign in to comment.