Skip to content

Commit

Permalink
Now ArtellaUploader settings can be accessed properly
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoveda committed Mar 17, 2020
1 parent 4ed6296 commit bab1142
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -332,7 +332,7 @@ def _on_data_changed(self):
self._total_items_lbl.setText('Total Checked Items: {}'.format(total_checked_items))

def _on_browse(self):
stored_path = self.settings().get('upload_path')
stored_path = self.settings.get('upload_path')
if stored_path and os.path.isdir(stored_path):
start_directory = stored_path
else:
Expand All @@ -345,7 +345,7 @@ def _on_browse(self):
if not export_path:
return

self.settings().set('upload_path', str(export_path))
self.settings.set('upload_path', str(export_path))

self._folder_path.setText(export_path)

Expand Down

0 comments on commit bab1142

Please sign in to comment.