Skip to content

Commit 672c229

Browse files
ghtmttrldhont
authored andcommittedJun 21, 2016
Small fix in write.csv option (#3225)
1 parent 72d75ff commit 672c229

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/r/RAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def getExportCommands(self):
333333
elif isinstance(out, OutputTable):
334334
value = out.value
335335
value = value.replace('\\', '/')
336-
commands.append('write.csv(' + out.name + ',"' + value + '"')
336+
commands.append('write.csv(' + out.name + ',"' + value + '")')
337337

338338
if self.showPlots:
339339
commands.append('dev.off()')

0 commit comments

Comments
 (0)
Please sign in to comment.