From 0abc3fee0e9ed057ff288b725e0f2dd3a496fc07 Mon Sep 17 00:00:00 2001 From: terrtia Date: Mon, 8 Jan 2024 14:56:20 +0100 Subject: [PATCH] fix: [tags] debug --- bin/lib/Tag.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/lib/Tag.py b/bin/lib/Tag.py index ade0f026..8fbd00b9 100755 --- a/bin/lib/Tag.py +++ b/bin/lib/Tag.py @@ -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)