Commit bcf3e29e by Ron Gomes

Fix incorrect argument ordering in error message, which provokes a

printf-related TypeError.
parent 2c9cba06
......@@ -480,7 +480,7 @@ class LinuxService(Service):
def get_systemd_status_dict(self):
(rc, out, err) = self.execute_command("%s show %s" % (self.enable_cmd, self.__systemd_unit,))
if rc != 0:
self.module.fail_json('failure %d running systemctl show for %r: %s' % (self.__systemd_unit, rc, err))
self.module.fail_json(msg='failure %d running systemctl show for %r: %s' % (rc, self.__systemd_unit, err))
return dict(line.split('=', 1) for line in out.splitlines())
def get_systemd_service_status(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment