mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixes typo
Add missing "not", typo introduced in commit 1244eea5be (diff-7daf765f2ab0dac794d0a412b89d428c)
.
This commit is contained in:
parent
26e5236073
commit
f5917ac1e8
1 changed files with 2 additions and 2 deletions
|
@ -236,9 +236,9 @@ class PyWinUpdater(object):
|
|||
|
||||
if not self.skipSoftwareUpdates and not self.skipDriverUpdates:
|
||||
search_string += 'Type=\'Software\' or Type=\'Driver\''
|
||||
elif self.skipSoftwareUpdates:
|
||||
elif not self.skipSoftwareUpdates:
|
||||
search_string += 'Type=\'Software\''
|
||||
elif self.skipDriverUpdates:
|
||||
elif not self.skipDriverUpdates:
|
||||
search_string += 'Type=\'Driver\''
|
||||
else:
|
||||
return False
|
||||
|
|
Loading…
Add table
Reference in a new issue