summaryrefslogtreecommitdiffstats
path: root/pyanaconda/rescue.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2011-07-20 09:39:35 -0400
committerChris Lumens <clumens@redhat.com>2011-07-20 09:39:35 -0400
commit576060e8facb5a5db87c4f618794c134e7f00435 (patch)
tree277ae547b47b2cdc118dbd95269b95abce8b0c5d /pyanaconda/rescue.py
parent4ca2a53a32ec8d74cd7002d7133ef68984e7f94d (diff)
downloadanaconda-576060e8facb5a5db87c4f618794c134e7f00435.tar.gz
anaconda-576060e8facb5a5db87c4f618794c134e7f00435.tar.xz
anaconda-576060e8facb5a5db87c4f618794c134e7f00435.zip
progressWindow takes a bunch of new arguments for pulsing (#723345).
Diffstat (limited to 'pyanaconda/rescue.py')
-rw-r--r--pyanaconda/rescue.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyanaconda/rescue.py b/pyanaconda/rescue.py
index 69786b5db..1e71dd650 100644
--- a/pyanaconda/rescue.py
+++ b/pyanaconda/rescue.py
@@ -51,8 +51,8 @@ class RescueInterface(InstallInterfaceBase):
def waitWindow(self, title, text):
return WaitWindow(self.screen, title, text)
- def progressWindow(self, title, text, total):
- return ProgressWindow(self.screen, title, text, total)
+ def progressWindow(self, title, text, total, updpct = 0.05, pulse = False):
+ return ProgressWindow(self.screen, title, text, total, updpct, pulse)
def detailedMessageWindow(self, title, text, longText=None, type="ok",
default=None, custom_icon=None,