summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.py b/text.py
index 9af171cf4..dc3c01f77 100644
--- a/text.py
+++ b/text.py
@@ -343,7 +343,7 @@ class InstallInterface:
from string import joinfields
list = traceback.format_exception(type, value, tb)
text = joinfields(list, "")
- win = MainExceptionWindow(text, "/tmp/anacdump.txt")
+ win = MainExceptionWindow(text, "/tmp/anacdump.txt", screen=screen)
win.run()
rc = win.getrc()
if rc == 1:
@@ -475,7 +475,7 @@ class InstallInterface:
return exnWin
def saveExceptionWindow(self, anaconda, longTextFile):
- win = SaveExceptionWindow (anaconda, longTextFile)
+ win = SaveExceptionWindow (anaconda, longTextFile, self.screen)
return win
def partedExceptionWindow(self, exc):