Made examine command more verbose about the cmdset stack and just which cmdsets go into the currently merged set. This meant a change to merged sets where they store their component sets as a variable "merged_from".
This commit is contained in:
parent
1cabcae771
commit
c321ccb332
5 changed files with 44 additions and 20 deletions
|
|
@ -153,6 +153,10 @@ class CmdSet(object):
|
|||
self.system_commands = []
|
||||
self.actual_mergetype = self.mergetype
|
||||
self.cmdsetobj = cmdsetobj
|
||||
# this is set only on merged sets, in cmdhandler.py, in order to
|
||||
# track, list and debug mergers correctly.
|
||||
self.merged_from = []
|
||||
|
||||
# initialize system
|
||||
self.at_cmdset_creation()
|
||||
self._contains_cache = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue