From e784d66f97b7d6d9ec8afbe024d87bed2aa30ac6 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 2 Mar 2010 20:06:58 +0000 Subject: Make verify_all() do checksums in sorted order by hash name. (trunk r15318) svn path=/main/branches/2.1.7/; revision=15553 --- pym/portage/checksum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/checksum.py b/pym/portage/checksum.py index 6b849d5d7..badde3daf 100644 --- a/pym/portage/checksum.py +++ b/pym/portage/checksum.py @@ -186,7 +186,7 @@ def verify_all(filename, mydict, calc_prelink=0, strict=0): got = " ".join(got) return False, (_("Insufficient data for checksum verification"), got, expected) - for x in mydict: + for x in sorted(mydict): if x == "size": continue elif x in hashfunc_map: -- cgit v1.2.3-1-g7c22