diff --git a/lib/ansible/cli/galaxy.py b/lib/ansible/cli/galaxy.py index 11f7cbce61d..b7197be4c97 100644 --- a/lib/ansible/cli/galaxy.py +++ b/lib/ansible/cli/galaxy.py @@ -1127,7 +1127,7 @@ class GalaxyCLI(CLI): else: if dep_role.install_info['version'] != dep_role.version: if force_deps: - display.display('- changing dependant role %s from %s to %s' % + display.display('- changing dependent role %s from %s to %s' % (dep_role.name, dep_role.install_info['version'], dep_role.version or "unspecified")) dep_role.remove() requirements.append(dep_role) diff --git a/lib/ansible/parsing/dataloader.py b/lib/ansible/parsing/dataloader.py index c09683b31f8..4b7bddff7c8 100644 --- a/lib/ansible/parsing/dataloader.py +++ b/lib/ansible/parsing/dataloader.py @@ -59,7 +59,7 @@ class DataLoader: self._FILE_CACHE = dict() # NOTE: not thread safe, also issues with forks not returning data to main proc - # so they need to be cleaned independantly. See WorkerProcess for example. + # so they need to be cleaned independently. See WorkerProcess for example. # used to keep track of temp files for cleaning self._tempfiles = set()