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