summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-11-26 21:13:01 +0000
committerJeremy Katz <katzj@redhat.com>2002-11-26 21:13:01 +0000
commite506e8ef6e1d97285909c8ff23e502c910e9d7dd (patch)
tree3ce90ce920e4da842345e1bc5b99615f495aa53a /rescue.py
parent32d18cdb5603ba71a27661cc59d78bfaf43a36cc (diff)
downloadanaconda-e506e8ef6e1d97285909c8ff23e502c910e9d7dd.tar.gz
anaconda-e506e8ef6e1d97285909c8ff23e502c910e9d7dd.tar.xz
anaconda-e506e8ef6e1d97285909c8ff23e502c910e9d7dd.zip
this should fix rescue mode
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index 272b386f3..eb8ecd379 100644
--- a/rescue.py
+++ b/rescue.py
@@ -16,7 +16,7 @@
import upgrade
from snack import *
from constants_text import *
-from text import WaitWindow, OkCancelWindow
+from text import WaitWindow, OkCancelWindow, ProgressWindow
import sys
import os
import isys
@@ -26,6 +26,8 @@ from rhpl.log import log
from rhpl.translate import _
class RescueInterface:
+ def progressWindow(self, title, text, total):
+ return ProgressWindow(self.screen, title, text, total)
def waitWindow(self, title, text):
return WaitWindow(self.screen, title, text)