Skip to content

Commit 2da3a80

Browse files
author
Dougherty, Joseph
committed
Calls correct cwd() method
1 parent 541f2b1 commit 2da3a80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sasdataframe/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def sas_to_dataframe(path_to_libname, dsname, abs_path_to_csv=None, type_dict={}
5050
"""
5151

5252
if abs_path_to_csv is None:
53-
abs_path_to_csv = os.path.join(os.path.cwd(), 'tmp_output.csv')
53+
abs_path_to_csv = os.path.join(os.getcwd(), 'tmp_output.csv')
5454

5555
return_obj = export_dsn_to_csv(path_to_libname, dsname, abs_path_to_csv)
5656

0 commit comments

Comments
 (0)