Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] use default models folder when adding model from file (fix
  • Loading branch information
alexbruy committed Jul 25, 2016
1 parent 4e94963 commit b167c09
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -71,6 +71,6 @@ def execute(self):
self.tr('Error reading model', 'AddModelFromFileAction'),
self.tr('Cannot read file', 'AddModelFromFileAction'))
return
destFilename = os.path.join(ModelerUtils.modelsFolder(), os.path.basename(filename))
destFilename = os.path.join(ModelerUtils.defaultModelsFolder(), os.path.basename(filename))
shutil.copyfile(filename, destFilename)
algList.reloadProvider('model')

0 comments on commit b167c09

Please sign in to comment.