Fix spelling mistake of "in case"

Signed-off-by: Benjamin Drung <benjamin.drung@ionos.com>
This commit is contained in:
Benjamin Drung 2021-04-28 20:22:02 +02:00 committed by Megan Wilhite
parent 4ae61cdbf0
commit e27079fdf2
5 changed files with 5 additions and 5 deletions

View file

@ -498,7 +498,7 @@ Fixed
- Removing use of undefined varilable in utils/slack.py. (#58753)
- Restored the ability to specify the amount of extents for a Logical
Volume as a percentage. (#58759)
- Ensuring that the version check function is run a second time in all the user related functions incase the user being managed is the connection user and the password has been updated. (#58773)
- Ensuring that the version check function is run a second time in all the user related functions in case the user being managed is the connection user and the password has been updated. (#58773)
- Allow bytes in gpg renderer (#58794)
- Fix issue where win_wua module fails to load when BITS is set to Manual (#58848)
- Ensure that elasticsearch.index_exists is available before loading the elasticsearch returner. (#58851)

View file

@ -17,7 +17,7 @@ Fixed
- Removing use of undefined varilable in utils/slack.py. (#58753)
- Restored the ability to specify the amount of extents for a Logical
Volume as a percentage. (#58759)
- Ensuring that the version check function is run a second time in all the user related functions incase the user being managed is the connection user and the password has been updated. (#58773)
- Ensuring that the version check function is run a second time in all the user related functions in case the user being managed is the connection user and the password has been updated. (#58773)
- Allow bytes in gpg renderer (#58794)
- Fix issue where win_wua module fails to load when BITS is set to Manual (#58848)
- Ensure that elasticsearch.index_exists is available before loading the elasticsearch returner. (#58851)

View file

@ -1648,7 +1648,7 @@ class LocalClient:
timeout=timeout,
tgt=tgt,
tgt_type=tgt_type,
# (gtmanfred) expect_minions is popped here incase it is passed from a client
# (gtmanfred) expect_minions is popped here in case it is passed from a client
# call. If this is not popped, then it would be passed twice to
# get_iter_returns.
expect_minions=(

View file

@ -361,7 +361,7 @@ def _get_client(timeout=NOTSET, **kwargs):
client_kwargs["base_url"] = os.environ.get("DOCKER_HOST")
if "version" not in client_kwargs:
# Let docker-py auto detect docker version incase
# Let docker-py auto detect docker version in case
# it's not defined by user.
client_kwargs["version"] = "auto"

View file

@ -157,7 +157,7 @@ def present(name, subscriptions=None, region=None, key=None, keyid=None, profile
if subscription not in _subscriptions:
# Ensure the endpoint is set back to its original value,
# incase we starred out a password
# in case we starred out a password
subscription["endpoint"] = _endpoint
if __opts__["test"]: