@@ -, +, @@ Use MODULE.process / MODULE.error instead of self.log (Bug #44867) --- a/management/univention-self-service/umc/python/passwordreset/__init__.py +++ a/management/univention-self-service/umc/python/passwordreset/__init__.py @@ -467,9 +467,9 @@ class Instance(Base): cmd_exit = cmd_proc.wait() if cmd_out: - self.log("STDOUT of {}: {}".format(cmd, cmd_out)) + MODULE.process("STDOUT of {}: {}".format(cmd, cmd_out)) if cmd_err: - self.log("STDERR of {}: {}".format(cmd, cmd_err)) + MODULE.error("STDERR of {}: {}".format(cmd, cmd_err)) if cmd_exit == 0: return True