From e1828a768967496789223d4eb8b15e75dea1ab7a Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 22 Jun 2016 12:59:35 +0200 Subject: [PATCH] Removed stray debug print CURA-1385 --- cura/MachineActionManager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cura/MachineActionManager.py b/cura/MachineActionManager.py index c26d38331c..287ed89891 100644 --- a/cura/MachineActionManager.py +++ b/cura/MachineActionManager.py @@ -89,7 +89,6 @@ class MachineActionManager(QObject): ## Add a (unique) MachineAction # if the Key of the action is not unique, an exception is raised. def addMachineAction(self, action): - print("ADDING ACTIOONNN", action) if action.getKey() not in self._machine_actions: self._machine_actions[action.getKey()] = action else: