From dc61e6fede999f2457ba4e4108f4d56cb68311c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Niem=C3=B6ller?= Date: Mon, 12 Aug 2019 21:51:25 +0200 Subject: [PATCH] Bugfix: TclCommandMillHoles was not working at all --- tclCommands/TclCommandMillHoles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tclCommands/TclCommandMillHoles.py b/tclCommands/TclCommandMillHoles.py index 38fc222b..8826f856 100644 --- a/tclCommands/TclCommandMillHoles.py +++ b/tclCommands/TclCommandMillHoles.py @@ -82,7 +82,7 @@ class TclCommandMillHoles(TclCommandSignaled): del args['name'] # This runs in the background... Is blocking handled? - success, msg = obj.generate_milling(**args) + success, msg = obj.generate_milling_drills(**args) except Exception as e: self.raise_tcl_error("Operation failed: %s" % str(e))