diff options
author | Chris Lumens <clumens@redhat.com> | 2009-03-31 10:37:09 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-03-31 11:54:46 -0400 |
commit | d45b4edc103720a4493814e2d51ae89c79c08315 (patch) | |
tree | 30b0763df65150cfa93d96d690236918409ef53d /gui.py | |
parent | d383e2ae22a76ae755e5b549ce6d8a299e70ec1d (diff) | |
download | anaconda-d45b4edc103720a4493814e2d51ae89c79c08315.tar.gz anaconda-d45b4edc103720a4493814e2d51ae89c79c08315.tar.xz anaconda-d45b4edc103720a4493814e2d51ae89c79c08315.zip |
If there's a problem finding removable disks, disable save-to-disk.
Catching all exception is really drastic, but this is the exception reporting
code and we need it to be resiliant to extra errors so we stand a chance of
getting things reported.
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -743,7 +743,11 @@ class SaveExceptionWindow: store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING) - dests = anaconda.id.storage.exceptionDisks() + try: + dests = anaconda.id.storage.exceptionDisks() + except Exception as e: + log.error("Error when probing exception disks: %s" % e) + dests = [] if flags.livecdInstall: self.destCombo.remove_text(0) |