From c196a4bf00b53cd59232b71c92179f9a5e101f9d Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Thu, 6 Jul 2017 10:42:24 +0200 Subject: [PATCH] Fix stack file version number in VersionUpgrade26to27 CURA-3975 --- .../VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py b/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py index c0e085bcfb..38031765d5 100644 --- a/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py +++ b/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py @@ -112,7 +112,7 @@ class VersionUpgrade26to27(VersionUpgrade): parser["metadata"]["setting_version"] = str(CuraApplication.SettingVersion) # Update version - parser["general"]["version"] = "4" + parser["general"]["version"] = "3" # Re-serialise the file. output = io.StringIO()