mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-26 21:33:12 +00:00
deps module util: fix overzealous name cropping (#6479)
Fix overzealous name cropping.
This commit is contained in:
@@ -80,7 +80,7 @@ def _select_names(spec):
|
||||
for d in spec_split:
|
||||
dep_names.remove(d)
|
||||
else:
|
||||
spec_split = spec[1:].split(":")
|
||||
spec_split = spec.split(":")
|
||||
dep_names = []
|
||||
for d in spec_split:
|
||||
_deps[d] # ensure it exists
|
||||
|
||||
Reference in New Issue
Block a user