add messages in the console_messages list
(self, message_type, message)
| 30 | self.console_messages = [] |
| 31 | |
| 32 | def add_console_message(self, message_type, message): |
| 33 | """add messages in the console_messages list""" |
| 34 | for m in message.split("\n"): |
| 35 | if m.strip(): |
| 36 | self.console_messages.append((message_type, m)) |
| 37 | |
| 38 | def update_more(self, more): |
| 39 | """more is set to true if further input is required from the user |
no test coverage detected