diff options
author | Erik Troan <ewt@redhat.com> | 2000-02-23 21:04:50 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-02-23 21:04:50 +0000 |
commit | 9118274a4e9df2a574cecc169e5fbca4dc98d2f9 (patch) | |
tree | b5c9aa7b945a00eab9659d8e81089da31c630af0 /textw | |
parent | 51f5a9e60eea5c47de006440b23e33a996fff3dd (diff) | |
download | anaconda-9118274a4e9df2a574cecc169e5fbca4dc98d2f9.tar.gz anaconda-9118274a4e9df2a574cecc169e5fbca4dc98d2f9.tar.xz anaconda-9118274a4e9df2a574cecc169e5fbca4dc98d2f9.zip |
various changes to get better ^C, ^Z handling
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partitioning.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/partitioning.py b/textw/partitioning.py index 0a571a834..8fb183f76 100644 --- a/textw/partitioning.py +++ b/textw/partitioning.py @@ -82,7 +82,8 @@ class ManualPartitionWindow: except: # XXX FIXME pass - iutil.execWithRedirect (path, [ path, "/tmp/" + device ]) + iutil.execWithRedirect (path, [ path, "/tmp/" + device ], + ignoreTermSigs = 1) try: os.remove ('/tmp/' + device) except: |