From 71c4ba799f74662f912702439162ce77cc7656db Mon Sep 17 00:00:00 2001 From: Nex Date: Fri, 4 Feb 2022 13:42:32 +0100 Subject: [PATCH] Fixed help message for download-apks --- mvt/android/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvt/android/cli.py b/mvt/android/cli.py index 01db812..e070edb 100644 --- a/mvt/android/cli.py +++ b/mvt/android/cli.py @@ -51,7 +51,7 @@ def version(): #============================================================================== # Command: download-apks #============================================================================== -@cli.command("download-apks", help="Download all or non-safelisted installed APKs installed on the device") +@cli.command("download-apks", help="Download all or only non-system installed APKs") @click.option("--serial", "-s", type=str, help=HELP_MSG_SERIAL) @click.option("--all-apks", "-a", is_flag=True, help="Extract all packages installed on the phone, including system packages")