rescue mode: fix traceback calling progressWindow()
Looks good, except for the spaces around = in the function parameters.
On Wed, 2011-08-17 at 10:45 +0200, Ales Kozumplik wrote:
> Resolves: rhbz#730714
> ---
> rescue.py | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rescue.py b/rescue.py
> index 42ff32f..f2c9c64 100644
> --- a/rescue.py
> +++ b/rescue.py
> @@ -49,8 +49,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,
--
Martin Gracik <mgracik@redhat.com>
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|