From 31b0c3b600255ea7d5163e90181a5a484c064bee Mon Sep 17 00:00:00 2001
From: Michael <m.langguth@fz-juelich.de>
Date: Wed, 10 Feb 2021 17:43:01 +0100
Subject: [PATCH] Correction to ValueError-message in config_utils.py.

---
 video_prediction_tools/config_runscripts/config_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/video_prediction_tools/config_runscripts/config_utils.py b/video_prediction_tools/config_runscripts/config_utils.py
index dbdb6c39..ee51f8f8 100644
--- a/video_prediction_tools/config_runscripts/config_utils.py
+++ b/video_prediction_tools/config_runscripts/config_utils.py
@@ -142,7 +142,7 @@ class Config_runscript_base:
             err = ValueError("%{0}: Could not find the attribute runscript_name.".format(method_name))
         if err is None:
             if self.runscript_template is None:
-                raise ValueError("%{0}: Attribute runscript_name is still uninitialized.".format(method_name))
+                raise ValueError("%{0}: Attribute runscript_template is still uninitialized.".format(method_name))
         else:
             raise err
 
-- 
GitLab