mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
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:
parent
e8ad0d0590
commit
1c589d375b
1 changed files with 1 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Reference in a new issue