##// END OF EJS Templates
ignore IOPub messages with no parent....
MinRK -
Show More
@@ -726,6 +726,10 b' class Client(HasTraits):'
726 726 if self.debug:
727 727 pprint(msg)
728 728 parent = msg['parent_header']
729 # ignore IOPub messages with no parent.
730 # Caused by print statements or warnings from before the first execution.
731 if not parent:
732 continue
729 733 msg_id = parent['msg_id']
730 734 content = msg['content']
731 735 header = msg['header']
General Comments 0
You need to be logged in to leave comments. Login now