Skip to content
Snippets Groups Projects
Commit b5219db3 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 5109ce5f
No related branches found
No related tags found
No related merge requests found
Pipeline #49 canceled
...@@ -722,7 +722,7 @@ class Tile: ...@@ -722,7 +722,7 @@ class Tile:
for f in self._paths["l2a"].glob("*L2A*.SAFE"): for f in self._paths["l2a"].glob("*L2A*.SAFE"):
# Nb jp2 < 7 # Nb jp2 < 7
if len(list(f.glob("GRANULE/*/IMG_DATA/R10m/*.jp2"))) < 7: if len(list(f.glob("GRANULE/*/IMG_DATA/R10m/*.jp2"))) < 7:
txt = "Corrupted L2A {} in L2A folder (nb jp2 <7 in R10m folder)".format(f.name) txt = "Corrupted L2A {} in L2A folder (less than 7 jp2 files in R10m folder)".format(f.name)
prob_id.append(txt) prob_id.append(txt)
logger.info(txt) logger.info(txt)
nb_id += 1 nb_id += 1
......
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