Removed stray debug print

CURA-1385
This commit is contained in:
Jaime van Kessel 2016-06-22 12:59:35 +02:00
parent 4ad7731efd
commit e1828a7689

View file

@ -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: