summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-13 20:44:37 +0000
committerMatt Wilson <msw@redhat.com>1999-09-13 20:44:37 +0000
commit8f80aae64e43e132aa53c02e996e1aad5c314ac0 (patch)
treec091ee0d08a4c92984b18769e6f8d106acd66f9c
parenta85ebca41d70e0a510d1bd3388adc8223a8fd1c3 (diff)
downloadanaconda-8f80aae64e43e132aa53c02e996e1aad5c314ac0.tar.gz
anaconda-8f80aae64e43e132aa53c02e996e1aad5c314ac0.tar.xz
anaconda-8f80aae64e43e132aa53c02e996e1aad5c314ac0.zip
fixup
-rw-r--r--textw/partitioning.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/textw/partitioning.py b/textw/partitioning.py
index 2def76a9d..d588ad5eb 100644
--- a/textw/partitioning.py
+++ b/textw/partitioning.py
@@ -76,7 +76,10 @@ class ManualPartitionWindow:
# XXX FIXME
pass
iutil.execWithRedirect (path, [ path, "/tmp/" + device ])
- os.remove ('/tmp/' + device)
+ try:
+ os.remove ('/tmp/' + device)
+ except:
+ # XXX fixme
screen.resume ()
if button == "back":