From 39e505371ef6d1a6674773797b3b6b1c807c975d Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sun, 12 Nov 2023 11:08:09 +0100 Subject: [PATCH] fix option naming should be `enable_i18n` Contributes to CURA-10831 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index d80de96ea3..872bbe6c47 100644 --- a/conanfile.py +++ b/conanfile.py @@ -497,7 +497,7 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV del self.info.options.cloud_api_version del self.info.options.display_name del self.info.options.cura_debug_mode - self.options.rm_safe("i18n") + self.options.rm_safe("enable_i18n") # TODO: Use the hash of requirements.txt and requirements-ultimaker.txt, Because changing these will actually result in a different # Cura. This is needed because the requirements.txt aren't managed by Conan and therefor not resolved in the package_id. This isn't