Skip to content

Commit 075f7d1

Browse files
committed
Fix undefined variable
1 parent 9f013c1 commit 075f7d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qt/manageprofiles/tab_general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ def _do_alot_pre_mount_checking(self, mnt, mount_kwargs):
476476

477477
if not mnt.isConfigured(mode=self.config.snapshotsMode(), **mount_kwargs):
478478
try:
479-
mnt.init(mode = mode, **mount_kwargs)
479+
mnt.init(mode=self.config.snapshotsMode(), **mount_kwargs)
480480
except MountException as ex:
481481
self.errorHandler(str(ex))
482482
return False

0 commit comments

Comments
 (0)