summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-09-21 17:13:09 +0000
committerJeremy Katz <katzj@redhat.com>2006-09-21 17:13:09 +0000
commit7747940c534ab9d5caafd6a18adce53b38314658 (patch)
tree08945b0cedd632ca3ae2a34ccad44ee0264cc629 /partedUtils.py
parent11a4ab0ac7a22d8f70859fcae52248514ab64d38 (diff)
downloadanaconda-7747940c534ab9d5caafd6a18adce53b38314658.tar.gz
anaconda-7747940c534ab9d5caafd6a18adce53b38314658.tar.xz
anaconda-7747940c534ab9d5caafd6a18adce53b38314658.zip
2006-09-21 Jeremy Katz <katzj@redhat.com>
* partitioning.py (partitionObjectsInitialize): Don't call check no disks here (#207471) * textw/partition_text.py (PartitionTypeWindow.__call__): And here * iw/autopart_type.py (PartitionTypeWindow.getNext): Check for no disks here * partedUtils.py (DiskSet.checkNoDisks): Don't exit, just return with an error code
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 1d587bce9..2cb2312bc 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -1164,8 +1164,8 @@ class DiskSet:
"found on which to create new file systems. "
"Please check your hardware for the cause "
"of this problem."))
- sys.exit(0)
-
+ return True
+ return False