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
be4feb7799
commit
a14c0484af
1 changed files with 7 additions and 5 deletions
|
@ -1474,11 +1474,13 @@ def _fix_tag_obj_id(date_from):
|
||||||
new_tag = tag.split(';')[0]
|
new_tag = tag.split(';')[0]
|
||||||
print(new_tag)
|
print(new_tag)
|
||||||
raw = get_obj_by_tags(obj_type, [tag], nb_obj=500000, date_from=date_from, date_to=date_to)
|
raw = get_obj_by_tags(obj_type, [tag], nb_obj=500000, date_from=date_from, date_to=date_to)
|
||||||
for obj_id in raw.get('tagged_obj', []):
|
if raw.get('tagged_obj', []):
|
||||||
|
for obj_id in raw['tagged_obj']:
|
||||||
# print(obj_id)
|
# print(obj_id)
|
||||||
delete_object_tag(tag, obj_type, obj_id)
|
delete_object_tag(tag, obj_type, obj_id)
|
||||||
add_object_tag(new_tag, obj_type, obj_id)
|
add_object_tag(new_tag, obj_type, obj_id)
|
||||||
|
else:
|
||||||
|
update_tag_global_by_obj_type(tag, obj_type)
|
||||||
|
|
||||||
# if __name__ == '__main__':
|
# if __name__ == '__main__':
|
||||||
# taxo = 'accessnow'
|
# taxo = 'accessnow'
|
||||||
|
|
Loading…
Reference in a new issue