Skip to content

Commit f3bbf89

Browse files
ghtmttm-kuhn
authored andcommitted
Small fix in write.csv option (#3225)
1 parent 6ea03ea commit f3bbf89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def getExportCommands(self):
346346
elif isinstance(out, OutputTable):
347347
value = out.value
348348
value = value.replace('\\', '/')
349-
commands.append('write.csv(' + out.name + ',"' + value + '"')
349+
commands.append('write.csv(' + out.name + ',"' + value + '")')
350350

351351
if self.showPlots:
352352
commands.append('dev.off()')

0 commit comments

Comments
 (0)