Skip to content

Commit

Permalink
Revert "[processing] use default models folder when adding model from…
Browse files Browse the repository at this point in the history
… file (fix #15335)"

This reverts commit ebd5b0b cherry-picked by mistake
  • Loading branch information
alexbruy committed Jul 25, 2016
1 parent ebd5b0b commit 2e4c328
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -69,6 +69,6 @@ def execute(self):
self.tr('Error reading model', 'AddModelFromFileAction'),
self.tr('Cannot read file', 'AddModelFromFileAction'))
return
destFilename = os.path.join(ModelerUtils.defaultModelsFolder(), os.path.basename(filename))
destFilename = os.path.join(ModelerUtils.modelsFolder(), os.path.basename(filename))
shutil.copyfile(filename, destFilename)
self.toolbox.updateProvider('model')

0 comments on commit 2e4c328

Please sign in to comment.