@@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing.
6.04.2020
- added key shortcuts (arrow up/down) that will select the objects in the Project tab if the focus is in that tab
+- added a minor change to the ListSys Tcl command
5.04.2020
@@ -60,4 +60,6 @@ class TclCommandListSys(TclCommand):
argument = args['selection']
return str([k for k in self.app.defaults.keys() if str(k).startswith(str(argument))])
else:
- return str([*self.app.defaults])
+ ret_val = list(self.app.defaults.keys())
+ return str(ret_val)
+ # return str([*self.app.defaults])