Skip to content

Commit 4be2d6d

Browse files
committed
fix quotes in read_csv
1 parent e558e4f commit 4be2d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

saspy/sasbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ def write_csv(self, file: str, table: str, libref: str = '',
13421342
dsopts = dsopts if dsopts is not None else {}
13431343
opts = opts if opts is not None else {}
13441344

1345-
code = "filename _x \""+file+"\";\n"
1345+
code = "filename _x '"+file+"';\n"
13461346
code += "options nosource;\n"
13471347
code += "proc export data="
13481348

0 commit comments

Comments
 (0)