fix: Fixed bug with default exif file.
This commit is contained in:
parent
963f27109f
commit
1e91ee8cf6
2 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## 0.12.x
|
||||
### 0.12.4: Fixed EXIF File Generation Bug
|
||||
- Fixed a bug where the application failed to generate a new default EXIF file if none was available. Now, the file is correctly created when missing.
|
||||
|
||||
### 0.12.3: UI Adjustments
|
||||
- Minor changes to maintain a unified layout across all windows.
|
||||
- Added option to sync app theme with OS (if supported).
|
||||
|
|
|
@ -30,7 +30,7 @@ class Utilities:
|
|||
def _prepear_exif_config(self):
|
||||
"""Prepear folder for config and generate default exif if non aviable"""
|
||||
if not os.path.isfile(self.exif_path):
|
||||
self.default_exif(self.exif_path)
|
||||
self.default_exif()
|
||||
|
||||
def _ensure_program_folder_exists(self):
|
||||
if not os.path.exists(self.folder_path):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue