-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor type-o in salt.modules.dpkg_lowpkg._get_pkg_info() when calling cmd.run_all #54907
Comments
:) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. If this issue is closed prematurely, please leave a comment and we will gladly reopen the issue. |
This type-o hasn't been fixed yet. The PR is there, but it hasn't been merged. |
Thank you for updating this issue. It is no longer marked as stale. |
Hello, I will take care of this typo. |
…ling cmd.run_all Fixes saltstack#54907 This change simply fixes the typo found within the module "dpkg_lowpkg".
good luck. I've tried to fix type-o's before and they've made me write unit tests for them. |
Description of Issue
This is pretty minor and should get low priority, but when
_get_pkg_info
fromsalt.modules.dpkg_lowpkg
callscmd.run_all
, the original author mistakenly passed the parameterpython_chell=False
.This should probably be
python_shell=False
, but since thepython_shell
parameter forcmd.run_all
isNone
by default, the misspelling doesn't directly affect anything.Setup
Found while tracking down some other issue.
Steps to Reproduce Issue
File and line-number is in
salt/modules/dpkg_lowpkg.py:239
which is linked athttps://github.com/saltstack/salt/blob/develop/salt/modules/dpkg_lowpkg.py#L329
Versions Report
Looks like it was introduced by commit 1aa8a85 which is from v2016.3.
The text was updated successfully, but these errors were encountered: