diff --git a/upgrade_server/upgrade_server/crud.py b/upgrade_server/upgrade_server/crud.py index 266c1d5..9834c48 100644 --- a/upgrade_server/upgrade_server/crud.py +++ b/upgrade_server/upgrade_server/crud.py @@ -41,7 +41,6 @@ def is_enabled() -> bool: def get_current_version() -> Optional[CurrentVersion]: try: path = os.path.join(config_dict["upgrades"]["data_root"], "VERSION") - print(path) if os.path.isfile(path): with open(path, "r") as fh: ver = fh.readline()