Skip to content

Commit

Permalink
Small fix in write.csv option (#3225)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghtmtt authored and m-kuhn committed Jun 20, 2016
1 parent 6ea03ea commit f3bbf89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/r/RAlgorithm.py
Expand Up @@ -346,7 +346,7 @@ def getExportCommands(self):
elif isinstance(out, OutputTable):
value = out.value
value = value.replace('\\', '/')
commands.append('write.csv(' + out.name + ',"' + value + '"')
commands.append('write.csv(' + out.name + ',"' + value + '")')

if self.showPlots:
commands.append('dev.off()')
Expand Down

0 comments on commit f3bbf89

Please sign in to comment.