From a4df9b6cc6fab7a6b846dab007ddb5f5c19df891 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Wed, 14 Feb 2018 15:02:53 +0100 Subject: [PATCH] CURA-4891 Add a '+' that I removed by accident --- cura/PrintInformation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrintInformation.py b/cura/PrintInformation.py index d6f3182c76..8b6fbb1f28 100644 --- a/cura/PrintInformation.py +++ b/cura/PrintInformation.py @@ -364,7 +364,7 @@ class PrintInformation(QObject): active_machine_type_name = global_container_stack.definition.getName() abbr_machine = "" - for word in re.findall(r"[\w']", active_machine_type_name): + for word in re.findall(r"[\w']+", active_machine_type_name): if word.lower() == "ultimaker": abbr_machine += "UM" elif word.isdigit():