diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-01-10 17:48:12 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-01-10 17:48:12 +0000 |
commit | 3fe6803a5377212d26e993965caafd9b6fa1b347 (patch) | |
tree | adca98cad635fcdea16503425fdfd1c9e5715f90 /gui.py | |
parent | 1ad93dab7d59cd9353105e363db4709897c404d2 (diff) | |
download | anaconda-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-x | gui.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 " |