def show_log(self): assert self.logfile, 'BUG: no logfile set (yet)' LogFileDialog(self, self.logfile).run()
def show_log(self): '''Action for the "View Log" button''' assert self.logfile, 'BUG: no logfile set (yet)' LogFileDialog(self, self.logfile).run()
def on_show_log(self): LogFileDialog(self, self.logging_context.file).run()