From 1fd6aef9c9c759a583310a5770eafb1f6fc55784 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 17 Oct 2016 08:27:06 +0200 Subject: [PATCH] fix #1984 --- gui/qt/installwizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 3e90464d3..ae3a3c2ee 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -79,7 +79,7 @@ def wizard_dialog(func): try: out = func(*args, **kwargs) except GoBack: - wizard.go_back() + wizard.go_back() if wizard.can_go_back() else wizard.close() return except UserCancelled: return