##// END OF EJS Templates
Fix `up` through generators in postmortem debugger...
Audrey Dutcher -
Show More
@@ -1203,7 +1203,7 b' class VerboseTB(TBTools):'
1203 if etb and etb.tb_next:
1203 if etb and etb.tb_next:
1204 etb = etb.tb_next
1204 etb = etb.tb_next
1205 self.pdb.botframe = etb.tb_frame
1205 self.pdb.botframe = etb.tb_frame
1206 self.pdb.interaction(self.tb.tb_frame, self.tb)
1206 self.pdb.interaction(None, etb)
1207
1207
1208 if hasattr(self, 'tb'):
1208 if hasattr(self, 'tb'):
1209 del self.tb
1209 del self.tb
General Comments 0
You need to be logged in to leave comments. Login now