diff options
author | Chris Lumens <clumens@redhat.com> | 2009-09-25 13:54:18 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-09-25 13:55:07 -0400 |
commit | 5e8a1ddd68ee4e0923278e6b8418d58788255001 (patch) | |
tree | 49e766197ae625b412578eda6d5e40b6c8e89aa2 /gui.py | |
parent | 5138026818a75e6e38f1201a239b8684ce238d7a (diff) | |
download | anaconda-5e8a1ddd68ee4e0923278e6b8418d58788255001.tar.gz anaconda-5e8a1ddd68ee4e0923278e6b8418d58788255001.tar.xz anaconda-5e8a1ddd68ee4e0923278e6b8418d58788255001.zip |
Adapt to python-meh passing a bug description around.
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |