Changed the long debugging output for loop/when
This commit is contained in:
parent
cc439110ae
commit
36477385a1
1 changed files with 2 additions and 2 deletions
|
@ -147,9 +147,9 @@ class RcInstruction:
|
|||
def dump(self):
|
||||
output = []
|
||||
if self._condition is not None:
|
||||
output.append("when: %s" % (repr(self._condition),))
|
||||
output.append("{when: %s}" % (repr(self._condition),))
|
||||
if self._loop is not None:
|
||||
output.append("loop[%s]: %s" % (self._loop_var, repr(self._loop)))
|
||||
output.append("{loop[%s]: %s}" % (self._loop_var, repr(self._loop)))
|
||||
output.extend(self.dump_instruction())
|
||||
return output
|
||||
|
||||
|
|
Loading…
Reference in a new issue