From: Alessandro Astone Date: Mon, 18 Sep 2023 16:25:53 +0000 (+0200) Subject: Fix logcat command after #996 X-Git-Tag: 1.4.2~13 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/commitdiff_plain/7dc516d8d0ce6d0021ced0a560b6893a504513b6?ds=inline 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 --- 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)