Fix missed variable rename 'object'

Change-Id: I93d72ce8da31f1f3544be3bd4a5e4926a23af61e
Closes-Bug: #1745041
This commit is contained in:
mathieu 2018-01-23 17:14:00 -05:00
parent 609986f5f0
commit 507e2cb80b
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def get_orphaned_neutron_objects(neutron_obj):
orphans = []
for neutron_obj in neutron_objs.get(neutron_obj):
if neutron_obj['tenant_id'] not in tenantids:
orphans.append(object['id'])
orphans.append(neutron_obj['id'])
return orphans