Fix typo in action sorting. Disklabels before partitions. (#560017)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Ack. This is for 561306 in rhel6-branch too, right?
On Wed, 3 Feb 2010, David Lehman wrote:
---
storage/devicetree.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/storage/devicetree.py b/storage/devicetree.py
index 4fb4e6c..d304b38 100644
--- a/storage/devicetree.py
+++ b/storage/devicetree.py
@@ -594,10 +594,10 @@ class DeviceTree(object):
ret = cmp(a1.device.name, a2.device.name)
elif isinstance(a1.device, PartitionDevice) and
a2.device.partitioned:
- ret = -1
+ ret = 1
elif isinstance(a2.device, PartitionDevice) and
a1.device.partitioned:
- ret = 1
+ ret = -1
else:
ret = 0
elif a1.isCreate():
- --
David Cantrell <dcantrell@redhat.com>
Red Hat / Honolulu, HI
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAktp+rkACgkQ5hsjjIy1Vkn2XwCfS58G+oNXF5 IPoXyovD04vRHZ
iiQAoIPTGlOmx+XIRKEyOm0WWmEHUOBJ
=ZrhE
-----END PGP SIGNATURE-----
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|