Spelling: dependant -> dependent (#69661)

This commit is contained in:
Rick Elrod 2020-05-22 00:54:25 -05:00 committed by GitHub
parent a4072ad0e9
commit dc63b36501
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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()