From f94198c1080fa15023020c7164ec7a3679aa0cbd Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 7 Dec 2023 14:41:44 +0100 Subject: [PATCH] Fix behaviour of internal property The attribute 'enterprise' in conanfile.py was incorrectly named and has been renamed to 'internal'. This revision ensures that options are accessed correctly to avoid potential issues in usage. Contributes to CURA-10831 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index f15766a57b..8ade8e771c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -86,7 +86,7 @@ class CuraConan(ConanFile): @property def _internal(self): - return self.options.enterprise in ["True", 'true'] + return self.options.internal in ["True", 'true'] @property def _app_name(self):