From 8f80aae64e43e132aa53c02e996e1aad5c314ac0 Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Mon, 13 Sep 1999 20:44:37 +0000 Subject: fixup --- textw/partitioning.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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": -- cgit