From 42755f3114a5514d61d06ab920c358c92df034f3 Mon Sep 17 00:00:00 2001
From: Felix Kleinert <f.kleinert@fz-juelich.de>
Date: Wed, 29 Apr 2020 15:47:46 +0200
Subject: [PATCH] fix: skip PlotStationMap on hdfmll and hdfmlc

---
 src/run_modules/post_processing.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/run_modules/post_processing.py b/src/run_modules/post_processing.py
index 9e6bbe39..bc3cdf26 100644
--- a/src/run_modules/post_processing.py
+++ b/src/run_modules/post_processing.py
@@ -200,7 +200,7 @@ class PostProcessing(RunEnvironment):
             PlotConditionalQuantiles(self.test_data.stations, data_pred_path=path, plot_folder=self.plot_path)
         if "PlotStationMap" in plot_list:
             if self.data_store.get("hostname")[:2] in self.data_store.get("hpc_hosts") or self.data_store.get(
-                    "hostname")[:5] in self.data_store.get("hpc_hosts"):
+                    "hostname")[:6] in self.data_store.get("hpc_hosts"):
                 logging.warning(
                     f"Skip 'PlotStationMap` because running on a hpc node: {self.data_store.get('hostname')}")
             else:
-- 
GitLab