mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
missing version list sorted
This commit is contained in:
parent
955a07db46
commit
c4ee752817
1 changed files with 2 additions and 2 deletions
4
start.py
4
start.py
|
|
@ -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}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue