From 24cdd9f8fe2a44caeb0bb65fc81429230272957b Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Fri, 14 Jun 2024 19:56:42 -0500 Subject: [PATCH] bug fix: print statement --- transport/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/registry.py b/transport/registry.py index f487b54..b8d5b16 100644 --- a/transport/registry.py +++ b/transport/registry.py @@ -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