From 31b745d048cfe3799e614ef0e1059d8fdfdc10c6 Mon Sep 17 00:00:00 2001 From: Lukas Date: Fri, 1 Oct 2021 21:13:53 +0200 Subject: [PATCH] fix isadmin debug output --- myTS3.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/myTS3.py b/myTS3.py index 42d34e4..5739de2 100644 --- a/myTS3.py +++ b/myTS3.py @@ -367,7 +367,8 @@ class TSbot: self.pipeOut(e, lvl="ERROR") return False - self.pipeOut(" ".join(groups), lvl="DEBUG") + self.pipeOut(str(groups.__dict__), lvl="DEBUG") # DEBUG + if self.allowed_sgids in groups: self.pipeOut(f"[{cldbid}] ISADMIN: True") return True