Fix 'View Files' not working with a relative base folder (#2350)

* Fix 'View Files' not working with a relative base folder

* Satisfy CONTRIBUTORS check
This commit is contained in:
Abdo 2023-01-26 12:45:53 +03:00 committed by GitHub
parent 5a1c29a818
commit d5c7071c03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ neitrinoweb <github.com/neitrinoweb/>
Andreas Reis <github.com/nwwt>
Matt Krump <github.com/mkrump>
Alexander Presnyakov <flagist0@gmail.com>
abdo <github.com/abdnh>
Abdo <github.com/abdnh>
aplaice <plaice.adam+github@gmail.com>
phwoo <github.com/phwoo>
Soren Bjornstad <anki@sorenbjornstad.com>

View file

@ -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: