From 39c81d834ab1294a9d85112ec4cd9bb741017987 Mon Sep 17 00:00:00 2001
From: dave <dave@dtu.dk>
Date: Tue, 11 Oct 2016 11:29:40 +0200
Subject: [PATCH] prepost.Simulations: fix backward compatibility issue for
 dlctemplate.py this issue was introduced by commit #cf15be69

---
 wetb/prepost/Simulations.py | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/wetb/prepost/Simulations.py b/wetb/prepost/Simulations.py
index 427e89f4..2dadaca4 100755
--- a/wetb/prepost/Simulations.py
+++ b/wetb/prepost/Simulations.py
@@ -5176,6 +5176,13 @@ class Cases(object):
                 csv_table.flush()
         h5f.close()
 
+    def force_lower_case_id(self):
+        """Keep for backwards compatibility with the dlctemplate.py
+        """
+        msg = "force_lower_case_id is depricated and is integrated in "
+        msg += "Cases.createcase() instead."
+        raise DeprecationWarning(msg)
+
 
 class EnvelopeClass(object):
     """
-- 
GitLab