From e96d635bbede4295e9abd79232ae35da9f71ac74 Mon Sep 17 00:00:00 2001 From: leufen1 <l.leufen@fz-juelich.de> Date: Wed, 19 May 2021 10:44:13 +0200 Subject: [PATCH] add index error to f_proc --- mlair/run_modules/pre_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlair/run_modules/pre_processing.py b/mlair/run_modules/pre_processing.py index d50f6f9a..d21f8920 100644 --- a/mlair/run_modules/pre_processing.py +++ b/mlair/run_modules/pre_processing.py @@ -351,7 +351,7 @@ def f_proc(data_handler, station, name_affix, store, **kwargs): """ try: res = data_handler.build(station, name_affix=name_affix, store_processed_data=store, **kwargs) - except (AttributeError, EmptyQueryResult, KeyError, requests.ConnectionError, ValueError) as e: + except (AttributeError, EmptyQueryResult, KeyError, requests.ConnectionError, ValueError, IndexError) as e: formatted_lines = traceback.format_exc().splitlines() logging.info( f"remove station {station} because it raised an error: {e} -> {' | '.join(f_inspect_error(formatted_lines))}") -- GitLab