summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-25 10:45:11 -0400
committerChris Lumens <clumens@redhat.com>2009-03-25 14:24:24 -0400
commitc0353833be369304d911508c28c5a60ec59d89a8 (patch)
treedc12dabb72c5e7cf7eefbf804e3d77e680c012dd /storage/__init__.py
parentf23357309e0d2e6a0f055b0ebdc6c9dd8036455b (diff)
downloadanaconda-c0353833be369304d911508c28c5a60ec59d89a8.tar.gz
anaconda-c0353833be369304d911508c28c5a60ec59d89a8.tar.xz
anaconda-c0353833be369304d911508c28c5a60ec59d89a8.zip
Don't underflow on the busy cursor stack.
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index fd9f28996..557f75962 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -264,17 +264,14 @@ class Storage(object):
luksDict=self.__luksDevs)
self.devicetree.populate()
self.fsset = FSSet(self.devicetree)
- w.pop()
except FSError as e:
- if w:
- w.pop()
-
self.anaconda.intf.messageWindow(_("Error"),
_("Filesystem error detected, cannot continue."),
custom_icon="error")
sys.exit(0)
finally:
- w.pop()
+ if w:
+ w.pop()
@property
def devices(self):