From bfd087a0a6a867c7c3a8a79e64fd027e5be4843c Mon Sep 17 00:00:00 2001 From: Remy Moll <mollator2@gmail.com> Date: Thu, 10 Dec 2020 11:25:38 +0100 Subject: [PATCH] Slight path problems --- persistence/rw.py | 1 + 1 file changed, 1 insertion(+) diff --git a/persistence/rw.py b/persistence/rw.py index 214d317..e544f99 100644 --- a/persistence/rw.py +++ b/persistence/rw.py @@ -78,6 +78,7 @@ class Variables(): if not os.path.exists(path): return "File does not exist" file = os.open(path,"r") + print(os.getcwd()) content = os.read(file) os.close(file) return content \ No newline at end of file