Skip to content

Commit eefb780

Browse files
Oliver Meckmannmirkobrombin
authored andcommitted
make bottles list sorted alphanumerically
1 parent cc92ff8 commit eefb780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bottles/backend/managers/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,7 @@ def process_bottle(bottle):
13101310
if config.Parameters.dxvk_nvapi:
13111311
NVAPIComponent.check_bottle_nvngx(real_path, config)
13121312

1313-
for b in bottles:
1313+
for b in sorted(bottles):
13141314
"""
13151315
For each bottle add the path name to the `local_bottles` variable
13161316
and append the config.

0 commit comments

Comments
 (0)