From f8fc234f05f3511b8b6fdb7a1d4186dd05a8c2ec Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sat, 14 Jun 2025 12:00:21 +0200 Subject: [PATCH] fix stderr logging message --- keydive/adb/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keydive/adb/remote.py b/keydive/adb/remote.py index 582a3d4..b6ff458 100644 --- a/keydive/adb/remote.py +++ b/keydive/adb/remote.py @@ -234,7 +234,7 @@ class Remote: # Run the shell command to get the list of packages sp = shell(prompt) if sp[0]: - self.logger.error('Unable to list installed apps (Error: %s)', sp[0]) + self.logger.error('Unable to list installed apps (Error: %s)', sp[1]) return applications # Parse command output line-by-line