1 |
From 50f9da94e3e19c8b1fb6ea3258b9e5d5de0c253f Mon Sep 17 00:00:00 2001 |
2 |
From: Shad L. Lords <slords@mail.com> |
3 |
Date: Mon, 19 Oct 2009 07:56:19 -0600 |
4 |
Subject: [PATCH] Fix goto previous if unable to go back |
5 |
|
6 |
--- |
7 |
text.py | 3 ++- |
8 |
1 files changed, 2 insertions(+), 1 deletions(-) |
9 |
|
10 |
diff --git a/text.py b/text.py |
11 |
index 40093c6..ae5cd33 100644 |
12 |
--- a/text.py |
13 |
+++ b/text.py |
14 |
@@ -722,7 +722,8 @@ class InstallInterface: |
15 |
"from here. You will have to try " |
16 |
"again."), |
17 |
buttons=[_("OK")]) |
18 |
- anaconda.dispatch.gotoPrev() |
19 |
+ else: |
20 |
+ anaconda.dispatch.gotoPrev() |
21 |
else: |
22 |
anaconda.dispatch.gotoNext() |
23 |
|
24 |
-- |
25 |
1.5.5.6 |
26 |
|