Skip to content
Snippets Groups Projects
Commit 69c5547c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "lrdp-v2: sort the parsers before running"

parents f08c2864 27099b29
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ def get_parsers(): ...@@ -92,7 +92,7 @@ def get_parsers():
""" """
parsers_dir = os.path.join(os.path.dirname(__file__), 'parsers') parsers_dir = os.path.join(os.path.dirname(__file__), 'parsers')
for f in glob.glob(os.path.join(parsers_dir, '*.py')): for f in sorted(glob.glob(os.path.join(parsers_dir, '*.py'))):
modname_ext = os.path.basename(f) modname_ext = os.path.basename(f)
if modname_ext == '__init__.py': if modname_ext == '__init__.py':
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment