Skip to content
Snippets Groups Projects
Commit 4df953a4 authored by Francois Gonzales's avatar Francois Gonzales
Browse files

Correction if div_mask is None

parent 150643cc
No related branches found
No related tags found
3 merge requests!77Release 1.7.1,!73Dockerfile corrections and optimizations,!70Resolve "[H2] - Code refactoring"
......@@ -350,7 +350,9 @@ class FscConfig:
m_div_mask = mission_config.get("div_mask", None)
if m_div_mask is not None:
self.div_mask = find_files(input_dir, m_div_mask)[0]
try:
self.div_mask = find_files(input_dir, m_div_mask)[0]
except: pass
m_dem = mission_config.get("dem", None)
if m_dem is not None:
......
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