From c33852dc436b5efc7824d99707d4b52d373980bc Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 12 May 2021 14:14:23 -0400 Subject: [PATCH] fix for #228 --- modules/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/builder.py b/modules/builder.py index 79ed2570e..f4243135a 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -707,7 +707,7 @@ def cant_interact(attr1, attr2, fail=False): elif str(method_data).lower() not in options: logger.error(f"Metadata Error: {method_data} {method_name} attribute invalid") else: - self.item_details[method_name] = options[str(method_data).lower()] + self.item_details[method_name] = str(method_data).lower() elif method_name in boolean_details: self.details[method_name] = util.get_bool(method_name, method_data) elif method_name in all_details: