--- gui.py | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gui.py b/gui.py index 03c5af4..0e4a455 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 = ""): -- 1.6.1.3 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list