From 51f9f2538e549c235ffc726b33158c6707e27e6a Mon Sep 17 00:00:00 2001 From: Shad L. Lords Date: Mon, 19 Oct 2009 07:56:19 -0600 Subject: [PATCH] Fix goto previous if unable to go back --- text.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/text.py b/text.py index 40093c6..ae5cd33 100644 --- a/text.py +++ b/text.py @@ -722,7 +722,8 @@ class InstallInterface: "from here. You will have to try " "again."), buttons=[_("OK")]) - anaconda.dispatch.gotoPrev() + else: + anaconda.dispatch.gotoPrev() else: anaconda.dispatch.gotoNext() -- 1.5.5.6