bug fix: print statement

This commit is contained in:
Steve Nyemba 2024-06-14 19:56:42 -05:00
parent b9bc898161
commit 24cdd9f8fe
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ def exists (path=REGISTRY_PATH) :
"""
p = os.path.exists(path)
q = os.path.exists( os.sep.join([path,REGISTRY_FILE]))
print ([p,q, os.sep.join([path,REGISTRY_FILE])])
return p and q
def load (_path=REGISTRY_PATH):
global DATA