[linux] 01/01: debian.py: Really implement stable order of fields not in the predefined order

debian-kernel at lists.debian.org debian-kernel at lists.debian.org
Fri Jan 8 12:15:44 UTC 2016


This is an automated email from the git hooks/post-receive script.

benh pushed a commit to branch sid
in repository linux.

commit db948006fca5a62262ab6c1da56481b939df3c64
Author: Ben Hutchings <ben at decadent.org.uk>
Date:   Fri Jan 8 12:15:30 2016 +0000

    debian.py: Really implement stable order of fields not in the predefined order
---
 debian/lib/python/debian_linux/debian.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/lib/python/debian_linux/debian.py b/debian/lib/python/debian_linux/debian.py
index a9bc1d8..445547b 100644
--- a/debian/lib/python/debian_linux/debian.py
+++ b/debian/lib/python/debian_linux/debian.py
@@ -412,7 +412,7 @@ class _ControlFileDict(dict):
             if i in self:
                 keys.remove(i)
                 yield i
-        for i in keys:
+        for i in sorted(list(keys)):
             yield i
 
     def items(self):

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/kernel/linux.git



More information about the Kernel-svn-changes mailing list