Fix incorrect argument ordering in error message, which provokes a

printf-related TypeError.
reviewable/pr18780/r1
Ron Gomes 10 years ago
parent 9d86d41741
commit 73246a49dc

@ -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):

Loading…
Cancel
Save