fix: [tags] debug

dev
terrtia 2024-01-08 15:01:40 +01:00
parent 07c51e111f
commit 4b21cc2939
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 4 additions and 5 deletions

View File

@ -1472,11 +1472,10 @@ def _fix_tag_obj_id():
new_tag = tag.split(';')[0]
print(new_tag)
raw = get_obj_by_tags(obj_type, [new_tag], nb_obj=500000)
for global_id in raw.get('tagged_obj', []):
print(global_id)
obj_type, subtype, obj_id = global_id.split(':', 2)
delete_object_tag(tag, obj_type, obj_id, subtype=subtype)
add_object_tag(new_tag, obj_type, obj_id, subtype=subtype)
for obj_id in raw.get('tagged_obj', []):
print(obj_id)
delete_object_tag(tag, obj_type, obj_id)
add_object_tag(new_tag, obj_type, obj_id)
# if __name__ == '__main__':