mirror of
https://github.com/zerwes/ansible-fqcn-converter.git
synced 2025-02-25 18:55:30 -06:00
fixed 'fqcn as key' code
This commit is contained in:
parent
11e07ed57e
commit
bb250ba85f
@ -189,8 +189,9 @@ if not fqcnmapfile or args.updatefqcnmapfile:
|
|||||||
print('fqcn map written to %s' % args.fqcnmapfile)
|
print('fqcn map written to %s' % args.fqcnmapfile)
|
||||||
|
|
||||||
# add the fqcn as key to
|
# add the fqcn as key to
|
||||||
for fqcn in copy.copy(fqcndict).values():
|
for fqcnlist in copy.copy(fqcndict).values():
|
||||||
fqcndict[fqcn] = fqcn
|
for fqcn in fqcnlist:
|
||||||
|
fqcndict[fqcn] = fqcn
|
||||||
|
|
||||||
# build exclude_paths
|
# build exclude_paths
|
||||||
exclude_paths = []
|
exclude_paths = []
|
||||||
|
Loading…
Reference in New Issue
Block a user