Skip to content
Snippets Groups Projects
Commit 72c42ef1 authored by pascal.mouquet_ird.fr's avatar pascal.mouquet_ird.fr
Browse files

removed < sign in tile.clean_lib to prevent interpretation as html tag

parent b5219db3
No related branches found
No related tags found
No related merge requests found
Pipeline #50 failed
...@@ -81,8 +81,9 @@ class Library: ...@@ -81,8 +81,9 @@ class Library:
counts = til.clean_lib(remove=remove, remove_indice_tif=remove_indice_tif) counts = til.clean_lib(remove=remove, remove_indice_tif=remove_indice_tif)
nb_id += counts["identified_problems"] nb_id += counts["identified_problems"]
nb_rm += counts["removed_problems"] nb_rm += counts["removed_problems"]
prob_id.append(counts["problems"]) if counts["problems"]:
logger.info("{} - {}".format(til, counts)) prob_id.append(counts["problems"])
logger.info("{} - identified problems:{} - removed problems:{}".format(til, counts["identified_problems"], counts["removed_problems"]))
except: except:
pass pass
return {"identified_problems": nb_id, "removed_problems": nb_rm, "problems": prob_id} return {"identified_problems": nb_id, "removed_problems": nb_rm, "problems": prob_id}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment