diff options
author | Matt Wilson <msw@redhat.com> | 2000-07-26 16:47:36 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-07-26 16:47:36 +0000 |
commit | 1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63 (patch) | |
tree | 0661557e213e46e660c7217f302c4413aabf91c0 /anaconda | |
parent | 8795634080254cac6d4b537769d2a3294f5663fd (diff) | |
download | anaconda-1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63.tar.gz anaconda-1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63.tar.xz anaconda-1d9b2b1f90fe8b3181ed506eefce90ad6ce74f63.zip |
more fallbacks
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -272,7 +272,11 @@ if (display_mode == 'g'): os.symlink ("../mnt/runtime/etc/" + i, "/etc/" + i) except: pass - from gui import InstallInterface + try: + from gui import InstallInterface + except: + print "GUI installer startup failed, falling back to text mode." + from text import InstallInterface elif (display_mode == 't'): from text import InstallInterface else: |