From 7f2465ef07dcd08ea11ea499cfcb1ab30c77c220 Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Thu, 8 Oct 2009 15:29:29 +0000 Subject: [PATCH] Sort list of files when building all XEPs. git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@3510 4b5297f7-1745-476d-ba37-a9c6900126ab --- gen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gen.py b/gen.py index af4ab016..2160e2cc 100755 --- a/gen.py +++ b/gen.py @@ -164,6 +164,7 @@ def buildXEP( filename ): def buildAll(): files = glob.glob('xep-????.xml') + files.sort(key=lambda x: x.lower()) for file in files: buildXEP( file )