From d5c7071c03120d7aadc61baab94f4396d2362421 Mon Sep 17 00:00:00 2001 From: Abdo Date: Thu, 26 Jan 2023 12:45:53 +0300 Subject: [PATCH] Fix 'View Files' not working with a relative base folder (#2350) * Fix 'View Files' not working with a relative base folder * Satisfy CONTRIBUTORS check --- CONTRIBUTORS | 2 +- qt/aqt/profiles.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 1b1dc3e25..63bde7d6f 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -54,7 +54,7 @@ neitrinoweb Andreas Reis Matt Krump Alexander Presnyakov -abdo +Abdo aplaice phwoo Soren Bjornstad diff --git a/qt/aqt/profiles.py b/qt/aqt/profiles.py index 386d6a32c..6b78207fa 100644 --- a/qt/aqt/profiles.py +++ b/qt/aqt/profiles.py @@ -340,7 +340,7 @@ class ProfileManager: or ProfileManager._default_base() ) path.mkdir(parents=True, exist_ok=True) - return path + return path.resolve() @staticmethod def _default_base() -> str: