From 5e8a1ddd68ee4e0923278e6b8418d58788255001 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Fri, 25 Sep 2009 13:54:18 -0400 Subject: Adapt to python-meh passing a bug description around. --- gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gui.py') diff --git a/gui.py b/gui.py index 6eab12b3b..b456d5b8a 100755 --- a/gui.py +++ b/gui.py @@ -1080,9 +1080,9 @@ class InstallInterface: addFrame(win.dialog) return win - def saveExceptionWindow(self, longTextFile): + def saveExceptionWindow(self, longTextFile, desc="", *args, **kwargs): from meh.ui.gui import SaveExceptionWindow - win = SaveExceptionWindow (self.anaconda, longTextFile) + win = SaveExceptionWindow (longTextFile, desc=desc, *args, **kwargs) addFrame(win.dialog) return win -- cgit