Skip to content

Commit

Permalink
Stabilize the order of files in promptForSettingsFile
Browse files Browse the repository at this point in the history
  • Loading branch information
youngmit committed Apr 20, 2020
1 parent e90bf92 commit c47cd95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion armi/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def promptForSettingsFile(choice=None):
"""
runLog.info("Welcome to the ARMI Loader")
runLog.info("Scanning for ARMI settings files...")
files = glob.glob("*.yaml") + glob.glob("*.xml") # phase out xml later
files = sorted(glob.glob("*.yaml") + glob.glob("*.xml")) # phase out xml later
if not files:
runLog.info(
"No eligible settings files found. Creating settings without choice"
Expand Down

0 comments on commit c47cd95

Please sign in to comment.