Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2019-07-31 15:34:07 +0300
committerGhostkeeper <rubend@tutanota.com>2019-07-31 15:34:07 +0300
commite5ebbdd62f075e110228847454f6fc850eb25d51 (patch)
tree03e400e2573a3601f82ded2c3c0674a3c6034038
parent65b28f228bfc6f3ed890530bb1a6a70ea29664c1 (diff)
Remove debugging statements4.2.14.2
Contributes to issue CURA-6696.
-rw-r--r--plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py b/plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py
index 009be9a430..a5a77a91e0 100644
--- a/plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py
+++ b/plugins/VersionUpgrade/VersionUpgrade41to42/VersionUpgrade41to42.py
@@ -239,7 +239,6 @@ class VersionUpgrade41to42(VersionUpgrade):
#
# This renames the renamed settings in the containers.
def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
- print("============================ upgrading instance container!")
parser = configparser.ConfigParser(interpolation = None)
parser.read_string(serialized)
@@ -266,7 +265,6 @@ class VersionUpgrade41to42(VersionUpgrade):
# For quality-changes profiles made for Creality printers, change the definition to the creality_base and make sure that the quality is something we have a profile for.
if parser["metadata"].get("type", "") == "quality_changes":
for possible_printer in _quality_changes_to_creality_base:
- print("======================= basename:", os.path.basename(filename), "vs. possible printer", possible_printer)
if os.path.basename(filename).startswith(possible_printer + "_"):
parser["general"]["definition"] = "creality_base"
parser["metadata"]["quality_type"] = _creality_limited_quality_type.get(parser["metadata"]["quality_type"], "draft")