summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
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