From b11ac0ca4d188ef46da5e0603ab238c05129b6f6 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Mon, 6 Apr 2020 19:04:32 +0300 Subject: [PATCH] - added a minor change to the ListSys Tcl command --- README.md | 1 + tclCommands/TclCommandListSys.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ba2b6c0..9cda4dcb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/tclCommands/TclCommandListSys.py b/tclCommands/TclCommandListSys.py index 39fc6e22..58d8c8e3 100644 --- a/tclCommands/TclCommandListSys.py +++ b/tclCommands/TclCommandListSys.py @@ -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]) \ No newline at end of file + ret_val = list(self.app.defaults.keys()) + return str(ret_val) + # return str([*self.app.defaults])