fix: fixed app path
This commit is contained in:
parent
d356937e41
commit
63422ccd88
2 changed files with 4 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ import os
|
|||
|
||||
class Utilities:
|
||||
def __init__(self, app_folder_path):
|
||||
self.folder_path = app_folder_path
|
||||
self.folder_path = os.path.expanduser(app_folder_path)
|
||||
self._ensure_program_folder_exists()
|
||||
self.exif_path = os.path.expanduser(f"{app_folder_path}/exif.yaml")
|
||||
self.settings_path = os.path.expanduser(f"{app_folder_path}/settings.yaml")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue