summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-07-15 14:54:26 -0400
committerChris Lumens <clumens@redhat.com>2009-07-29 15:25:18 -0400
commit0b57ab52946cbbd733f57fde193884dcea6540a1 (patch)
treefdb1e00ffc22090df4197e0a256c98a7d8c447a9 /gui.py
parent7a5188ab9fa5eae440083afc5b502ff00b4eb0d5 (diff)
downloadanaconda-0b57ab52946cbbd733f57fde193884dcea6540a1.tar.gz
anaconda-0b57ab52946cbbd733f57fde193884dcea6540a1.tar.xz
anaconda-0b57ab52946cbbd733f57fde193884dcea6540a1.zip
Adapt mainExceptionWindow and saveExceptionWindow to call meh.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 03c5af4f3..0e4a45550 100755
--- a/gui.py
+++ b/gui.py
@@ -1073,12 +1073,16 @@ class InstallInterface:
return rc
def mainExceptionWindow(self, shortText, longTextFile):
+ from meh.ui.gui import MainExceptionWindow
log.critical(shortText)
win = MainExceptionWindow (shortText, longTextFile)
+ addFrame(win.dialog)
return win
- def saveExceptionWindow(self, anaconda, longTextFile):
- win = SaveExceptionWindow (anaconda, longTextFile)
+ def saveExceptionWindow(self, longTextFile):
+ from meh.ui.gui import SaveExceptionWindow
+ win = SaveExceptionWindow (self.anaconda, longTextFile)
+ addFrame(win.dialog)
return win
def getInstallKey(self, anaconda, key = ""):