fix: [tags] debug

dev
terrtia 2024-01-08 14:56:20 +01:00
parent 8bf67cf3b6
commit 0abc3fee0e
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 3 additions and 0 deletions

View File

@ -1468,10 +1468,13 @@ def _fix_tag_obj_id():
for obj_type in ail_core.get_all_objects():
for tag in get_all_obj_tags(obj_type):
if ';' in tag:
print(tag)
new_tag = tag.split(';')[0]
print(new_tag)
for raw in get_obj_by_tags(obj_type, [new_tag], nb_obj=500000):
for global_id in raw.get('tagged_obj', []):
obj_type, subtype, obj_id = global_id.split(':', 2)
print(global_id)
delete_object_tag(tag, obj_type, obj_id, subtype=subtype)
add_object_tag(new_tag, obj_type, obj_id, subtype=subtype)