commit eff60b37178d445d3709e0367496ad70462b03ad Author: Stefan Gohmann Date: Tue Sep 19 08:26:52 2017 +0200 Use MODULE.process / MODULE.error instead of self.log (Bug #44867) diff --git a/management/univention-self-service/umc/python/passwordreset/__init__.py b/management/univention-self-service/umc/python/passwordreset/__init__.py index a559eb3dac..c654b0d36f 100644 --- a/management/univention-self-service/umc/python/passwordreset/__init__.py +++ b/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