Skip to content

Commit

Permalink
fix: use global settings_csv_path in _main
Browse files Browse the repository at this point in the history
  • Loading branch information
ElpadoCan committed Sep 6, 2023
1 parent 072cf40 commit 2108e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cellacdc/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,7 @@ def checkMigrateUserDataFolderPath(self):
)
if doNotAskAgainCheckbox.isChecked():
self.df_settings.at['doNotAskMigrate', 'value'] = 'Yes'
self.df_settings.to_csv(self.settings_csv_path)
self.df_settings.to_csv(settings_csv_path)
if msg.cancel:
self.logger.info(
'Migrating old user profile cancelled.'
Expand Down

0 comments on commit 2108e44

Please sign in to comment.