[kernel-team] 17/86: lib/kconfigeditor/kconfig/package/files.py: Sort unknown entries.
debian-kernel at lists.debian.org
debian-kernel at lists.debian.org
Mon Dec 21 00:34:53 UTC 2015
This is an automated email from the git hooks/post-receive script.
benh pushed a commit to branch benh/kconfigeditor2
in repository kernel-team.
commit 08fcb304c0f85cae53b81abcde1077540b8b348e
Author: Bastian Blank <waldi at debian.org>
Date: Tue Mar 11 19:14:28 2008 +0000
lib/kconfigeditor/kconfig/package/files.py: Sort unknown entries.
svn path=/people/waldi/utils/kconfigeditor2/; revision=10812
---
utils/kconfigeditor2/lib/kconfigeditor/kconfig/package/files.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/utils/kconfigeditor2/lib/kconfigeditor/kconfig/package/files.py b/utils/kconfigeditor2/lib/kconfigeditor/kconfig/package/files.py
index 7d8fda2..34301b1 100644
--- a/utils/kconfigeditor2/lib/kconfigeditor/kconfig/package/files.py
+++ b/utils/kconfigeditor2/lib/kconfigeditor/kconfig/package/files.py
@@ -152,6 +152,8 @@ class File(dict):
unprocessed = s - processed - ignored
if unprocessed:
ret.extend(["##", "## file: unknown", "##"])
+ unprocessed = list(unprocessed)
+ unprocessed.sort()
for i in unprocessed:
e = self.get(i)
ret.append(e)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/kernel/kernel-team.git
More information about the Kernel-svn-changes
mailing list