Skip to content

Commit

Permalink
windows bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cas Pouw committed Dec 16, 2021
1 parent b743969 commit 87f5620
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sociophysicsDataHandler/spdh.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ def list_files(self, path, basepath=BASE_PATH):

from pandas import DataFrame

final_path = os.path.join("", basepath, path, "")
# final_path = os.path.join("", basepath, path, "")
final_path = f"{basepath}/{path}"
print("targeting path", final_path)

oc_files = self.__oc_client.list(final_path)
Expand Down

0 comments on commit 87f5620

Please sign in to comment.