1
0
mirror of https://github.com/moparisthebest/xeps synced 2024-11-24 18:22:24 -05:00

Sort list of files when building all XEPs.

git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@3510 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Tobias Markmann 2009-10-08 15:29:29 +00:00
parent 1fadfb1746
commit 7f2465ef07

1
gen.py
View File

@ -164,6 +164,7 @@ def buildXEP( filename ):
def buildAll(): def buildAll():
files = glob.glob('xep-????.xml') files = glob.glob('xep-????.xml')
files.sort(key=lambda x: x.lower())
for file in files: for file in files:
buildXEP( file ) buildXEP( file )