mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [tags] debug
This commit is contained in:
parent
0abc3fee0e
commit
efb8b2d0d3
1 changed files with 6 additions and 6 deletions
|
@ -1471,12 +1471,12 @@ def _fix_tag_obj_id():
|
||||||
print(tag)
|
print(tag)
|
||||||
new_tag = tag.split(';')[0]
|
new_tag = tag.split(';')[0]
|
||||||
print(new_tag)
|
print(new_tag)
|
||||||
for raw in get_obj_by_tags(obj_type, [new_tag], nb_obj=500000):
|
raw = get_obj_by_tags(obj_type, [new_tag], nb_obj=500000)
|
||||||
for global_id in raw.get('tagged_obj', []):
|
for global_id in raw.get('tagged_obj', []):
|
||||||
obj_type, subtype, obj_id = global_id.split(':', 2)
|
obj_type, subtype, obj_id = global_id.split(':', 2)
|
||||||
print(global_id)
|
print(global_id)
|
||||||
delete_object_tag(tag, obj_type, obj_id, subtype=subtype)
|
delete_object_tag(tag, obj_type, obj_id, subtype=subtype)
|
||||||
add_object_tag(new_tag, obj_type, obj_id, subtype=subtype)
|
add_object_tag(new_tag, obj_type, obj_id, subtype=subtype)
|
||||||
|
|
||||||
|
|
||||||
# if __name__ == '__main__':
|
# if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in a new issue