mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
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:
parent
5a1c29a818
commit
d5c7071c03
2 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue