From a2787fd7f29497b85d957c3c75b62c16a241cf84 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Fri, 2 May 2025 08:14:19 +0200 Subject: [PATCH] fix: do not force use_data usage --- src/rougail/user_data_yaml/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rougail/user_data_yaml/config.py b/src/rougail/user_data_yaml/config.py index 721acd5..1a63e3c 100644 --- a/src/rougail/user_data_yaml/config.py +++ b/src/rougail/user_data_yaml/config.py @@ -30,7 +30,7 @@ yaml: disabled: type: jinja jinja: | - {{% if 'yaml' not in step.user_data %}} + {{% if step.user_data is propertyerror or 'yaml' not in step.user_data %}} disabled {{% endif %}}