diff --git a/scripts/ErrorReporter/error_dialog_app.py b/scripts/ErrorReporter/error_dialog_app.py index 4fe27e7f5b11ccf4ff7da20aae641d441b4634ef..6713c7e5c1e8d62116fa6a72e2b5faa6d48697bd 100644 --- a/scripts/ErrorReporter/error_dialog_app.py +++ b/scripts/ErrorReporter/error_dialog_app.py @@ -30,7 +30,8 @@ def main(): return int(command_line_args.exit_code) app = QtGui.QApplication(sys.argv) form = CrashReportPage(show_continue_terminate=False) - presenter = ErrorReporterPresenter(form, command_line_args.exit_code) # noqa + presenter = ErrorReporterPresenter(form, command_line_args.exit_code) + presenter.show_view() app.exec_() return int(command_line_args.exit_code) diff --git a/scripts/ErrorReporter/error_report_presenter.py b/scripts/ErrorReporter/error_report_presenter.py index 230bfe32ddbf784e5d97ffc1c5d9984b70516ae3..ef30f02977abb2247f597a8cbefba0506fc9214a 100644 --- a/scripts/ErrorReporter/error_report_presenter.py +++ b/scripts/ErrorReporter/error_report_presenter.py @@ -8,7 +8,6 @@ class ErrorReporterPresenter(object): self._view = view self._exit_code = exit_code self._view.action.connect(self.error_handler) - self._view.show() def error_handler(self, continue_working, share, name, email): if share == 0: @@ -25,3 +24,6 @@ class ErrorReporterPresenter(object): self._view.quit() else: self.error_log.error("Continue working.") + + def show_view(self): + self._view.show()