summaryrefslogtreecommitdiff
path: root/gr-utils/python/modtool/modtool_makexml.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2017-06-22 17:56:05 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2017-06-22 17:56:05 -0700
commit99ee660ce3701a33efa1737ae341e5360661f900 (patch)
treee51580572558e4fad555a999dccdabb37d9ef1e0 /gr-utils/python/modtool/modtool_makexml.py
parent1d537a26b27b9d3ce6a3affc6ea500a9efc5a867 (diff)
parent54e89c6431c249bbe560568d76800fef6a245506 (diff)
Merge branch 'master' into next
Diffstat (limited to 'gr-utils/python/modtool/modtool_makexml.py')
-rw-r--r--gr-utils/python/modtool/modtool_makexml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/modtool_makexml.py b/gr-utils/python/modtool/modtool_makexml.py
index 5f53749163..311ed96cb4 100644
--- a/gr-utils/python/modtool/modtool_makexml.py
+++ b/gr-utils/python/modtool/modtool_makexml.py
@@ -78,7 +78,7 @@ class ModToolMakeXML(ModTool):
def _search_files(self, path, path_glob):
""" Search for files matching pattern in the given path. """
- files = glob.glob("%s/%s"% (path, path_glob))
+ files = sorted(glob.glob("%s/%s"% (path, path_glob)))
files_filt = []
print "Searching for matching files in %s/:" % path
for f in files: