Skip to content

Commit

Permalink
Fix Minor type-o in salt.modules.dpkg_lowpkg._get_pkg_info() when cal…
Browse files Browse the repository at this point in the history
…ling cmd.run_all

Fixes saltstack#54907

This change simply fixes the typo found within the module "dpkg_lowpkg".
  • Loading branch information
spencer-burke committed Oct 1, 2020
1 parent 4fb0208 commit f9e31ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/modules/dpkg_lowpkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,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(
Expand Down

0 comments on commit f9e31ff

Please sign in to comment.