summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-10 17:48:12 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-10 17:48:12 +0000
commit3fe6803a5377212d26e993965caafd9b6fa1b347 (patch)
treeadca98cad635fcdea16503425fdfd1c9e5715f90 /gui.py
parent1ad93dab7d59cd9353105e363db4709897c404d2 (diff)
downloadanaconda-3fe6803a5377212d26e993965caafd9b6fa1b347.tar.gz
anaconda-3fe6803a5377212d26e993965caafd9b6fa1b347.tar.xz
anaconda-3fe6803a5377212d26e993965caafd9b6fa1b347.zip
print the error on tty1 at least if we fail to import a screen
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index eec4220c7..a7e50d41e 100755
--- a/gui.py
+++ b/gui.py
@@ -935,7 +935,8 @@ class InstallControlWindow:
try:
exec s
break
- except ImportError:
+ except ImportError, e:
+ print e
win = MessageWindow(_("Error!"),
_("An error occurred when attempting "
"to load an installer interface "