PATCH: fix last pychecker found issue in RHEL5-branch
On Thu, Nov 06, 2008 at 09:58:00PM +0100, Hans de Goede wrote:
> Hi All,
>
> See attachment, this fixes:
> text.py:413: Invalid arguments to (exceptionWindow), got 1, expected 2
Looks fine.
>
> Regards,
>
> Hans
> diff --git a/text.py b/text.py
> index 9a6c948..1810be3 100644
> --- a/text.py
> +++ b/text.py
> @@ -410,7 +410,7 @@ class InstallInterface:
> from string import joinfields
> list = traceback.format_exception(type, value, tb)
> text = joinfields(list, "")
> - win = self.exceptionWindow(text)
> + win = self.exceptionWindow(text, None)
> win.run()
> rc = win.getrc()
> if rc == 1:
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list@redhat.com
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list
--
David Cantrell <dcantrell@redhat.com>
Red Hat / Honolulu, HI
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|