From a80d1117b0689dac7befa895c536ee4d97bfc875 Mon Sep 17 00:00:00 2001 From: Loong Date: Sun, 16 Jul 2023 16:10:53 +0800 Subject: [PATCH] Debug: Fixed cannot return version --- easyNoSQL/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easyNoSQL/system.py b/easyNoSQL/system.py index 818de0e..3ad5c1e 100644 --- a/easyNoSQL/system.py +++ b/easyNoSQL/system.py @@ -68,5 +68,5 @@ def saveDataBase(filename,password='') -> bool: raise serror.KVDataBaseError(403,"An error occurred manipulating the database file.") def version(): - print('easyNoSQL - KV Database, Version: ' + easyNoSQL.system.VERTEXT) + print('easyNoSQL - KV Database, Version: ' + VERTEXT) \ No newline at end of file