Fix Minor type-o in salt.modules.dpkg_lowpkg._get_pkg_info() when calling cmd.run_all

Fixes #54907

This change simply fixes the typo found within the module "dpkg_lowpkg".
This commit is contained in:
Spencer Burke 2020-10-01 16:29:51 -07:00 committed by Gareth J. Greenaway
parent e8ad0d0590
commit 1c589d375b

View file

@ -278,7 +278,7 @@ def _get_pkg_info(*packages, **kwargs):
cmd += " {}".format(" ".join(packages))
cmd = cmd.strip()
call = __salt__["cmd.run_all"](cmd, python_chell=False)
call = __salt__["cmd.run_all"](cmd, python_shell=False)
if call["retcode"]:
if failhard:
raise CommandExecutionError(