From 7dc516d8d0ce6d0021ced0a560b6893a504513b6 Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Mon, 18 Sep 2023 18:25:53 +0200 Subject: [PATCH] Fix logcat command after #996 The logcat command does not have the same commandline options as the shell command, so provide empty defaults to avoid an AttributeError --- tools/helpers/lxc.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/helpers/lxc.py b/tools/helpers/lxc.py index 1c51e0d..76cfd74 100644 --- a/tools/helpers/lxc.py +++ b/tools/helpers/lxc.py @@ -476,4 +476,10 @@ def shell(args): def logcat(args): args.COMMAND = ["/system/bin/logcat"] + args.uid = None + args.gid = None + args.nolsm = None + args.allcaps = None + args.nocgroup = None + args.context = None shell(args) -- 2.47.3