We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c63cda commit 45196fbCopy full SHA for 45196fb
easybuild/framework/easyconfig/easyconfig.py
@@ -557,6 +557,11 @@ def templating_enabled(self):
557
"""Check whether templating is enabled on this EasyConfig"""
558
return self._templating_enabled
559
560
+ def _enable_templating(self, *_):
561
+ self.log.nosupport("self.enable_templating is replaced by self.templating_enabled. "
562
+ "To disable it use the self.disable_templating context manager", '5.0')
563
+ enable_templating = property(_enable_templating, _enable_templating)
564
+
565
@contextmanager
566
def allow_unresolved_templates(self):
567
"""Temporarily allow templates to be not (fully) resolved.
0 commit comments