Skip to content

Commit

Permalink
Merge pull request #22 from Ahuge/dev
Browse files Browse the repository at this point in the history
Prepare for Release v0.2.3
  • Loading branch information
Ahuge authored Jun 27, 2022
2 parents c6b13c8 + fb44229 commit 3c6aaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sept_qt/file_input_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(
self._save_to_disk_button = None
self._disk_path = disk_path

if disk_path and os.path.exists(disk_path):
if disk_path and os.path.exists(disk_path) and os.path.isfile(disk_path):
self.load_path(disk_path)

def load_path(self, path):
Expand Down

0 comments on commit 3c6aaf7

Please sign in to comment.