missing version list sorted

This commit is contained in:
Ondrej Samohel 2021-05-26 19:11:58 +02:00 committed by Ondrej Samohel
parent 955a07db46
commit c4ee752817
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

View file

@ -494,7 +494,7 @@ def _find_frozen_openpype(use_version: str = None,
print(f"!!! requested version {use_version} was not found.")
if openpype_versions:
print(" - found: ")
for v in openpype_versions:
for v in sorted(openpype_versions):
print(f" - {v}: {v.path}")
print(f" - local version {local_version}")
@ -575,7 +575,7 @@ def _bootstrap_from_code(use_version):
print(f"!!! requested version {use_version} was not found.")
if openpype_versions:
print(" - found: ")
for v in openpype_versions:
for v in sorted(openpype_versions):
print(f" - {v}: {v.path}")
print(f" - local version {local_version}")