Skip to content

Commit

Permalink
Fix undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
daviewales committed Oct 18, 2024
1 parent d09436e commit 64404a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt/manageprofiles/tab_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def _do_alot_pre_mount_checking(self, mnt, mount_kwargs):

if not mnt.isConfigured(mode=self.config.snapshotsMode(), **mount_kwargs):
try:
mnt.init(mode = mode, **mount_kwargs)
mnt.init(mode=self.config.snapshotsMode(), **mount_kwargs)
except MountException as ex:
self.errorHandler(str(ex))
return False
Expand Down

0 comments on commit 64404a3

Please sign in to comment.