From 7c5a7d1d30f0d2cf61e2f7a1891290e70ffcbd1e Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Mon, 11 May 2009 14:45:28 -0400 Subject: If clearPartType is None, don't attempt to clear a device (#499321). --- storage/partitioning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storage') diff --git a/storage/partitioning.py b/storage/partitioning.py index 1a6ee0ef3..8bdac9bcf 100644 --- a/storage/partitioning.py +++ b/storage/partitioning.py @@ -253,7 +253,7 @@ def shouldClear(part, clearPartType, clearPartDisks=None, protectedPartitions=No if not isinstance(part, PartitionDevice): return False - if clearPartType == CLEARPART_TYPE_NONE: + if not clearPartType in [CLEARPART_TYPE_LINUX, CLEARPART_TYPE_ALL]: return False # Never clear the special first partition on a Mac disk label, as that -- cgit