(self, msg='', flush=False, **kwargs)
| 838 | print('error: {}'.format(msg), file=sys.stdout) |
| 839 | |
| 840 | def log_info(self, msg='', flush=False, **kwargs): |
| 841 | if not self.env['quiet']: |
| 842 | print('{}'.format(msg), **kwargs) |
| 843 | if flush: |
| 844 | sys.stdout.flush() |
| 845 | |
| 846 | def main(self, *args, **kwargs): |
| 847 | ''' |
no outgoing calls