summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-05-19 04:09:10 +0000
committerJeremy Katz <katzj@redhat.com>2004-05-19 04:09:10 +0000
commit97c44e24ad6ddf3e45ce14038af53d93e89f8999 (patch)
treef9a7109a2c7d0a2773978864b6932c996938ea3f /partedUtils.py
parent4f4a93c00fe2e46c9901895d58ddcff1ad2e5736 (diff)
downloadanaconda-97c44e24ad6ddf3e45ce14038af53d93e89f8999.tar.gz
anaconda-97c44e24ad6ddf3e45ce14038af53d93e89f8999.tar.xz
anaconda-97c44e24ad6ddf3e45ce14038af53d93e89f8999.zip
sys.exit -> os._exit in children (from msw)
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 72527b2ee..6d2b7a147 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -741,7 +741,7 @@ class DiskSet:
os.close(fd)
os.execv(argList[0], argList)
log("failed to exec %s", argList)
- sys.exit(1)
+ os._exit(1)
os.close(p[1])