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 rldhont committed Jun 21, 2016
1 parent 72d75ff commit 672c229
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 @@ -333,7 +333,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 672c229

Please sign in to comment.