Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions python/tk_desktop/desktop_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -1920,13 +1920,14 @@ def handle_about(self):
versions["Engine"] = engine.version
versions["Core"] = engine.sgtk.version

if engine.sgtk.configuration_descriptor:
# Certain versions of core don't like configuration's without an
# info.yml, so tolerate it.
descriptor = self._current_pipeline_descriptor or engine.sgtk.configuration_descriptor

if descriptor:
# Use the selected project config first.
# Keep the About dialog working even if info.yml metadata cannot be read.

try:
versions[engine.sgtk.configuration_descriptor.display_name] = (
engine.sgtk.configuration_descriptor.version
)
versions[descriptor.display_name] = descriptor.version
except Exception:
pass

Expand Down
Loading