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

added try statement un case of latest L2A problem

parent 380f824a
No related branches found
No related tags found
No related merge requests found
Pipeline #28 canceled
...@@ -113,8 +113,11 @@ class Library: ...@@ -113,8 +113,11 @@ class Library:
""" """
Produce or update the latest quicklook for the L2A library tiles Produce or update the latest quicklook for the L2A library tiles
""" """
for tile in self.l2a: try:
Tile(tile).update_latest_ql() for tile in self.l2a:
Tile(tile).update_latest_ql()
except:
pass
def archive_l2a(self, def archive_l2a(self,
archive_list: list = [], archive_list: list = [],
......
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