- added a minor change to the ListSys Tcl command

This commit is contained in:
Marius Stanciu
2020-04-06 19:04:32 +03:00
committed by Marius
parent 69b39e2937
commit b11ac0ca4d
2 changed files with 4 additions and 1 deletions

View File

@@ -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])