From 35ff88b83b20be659657a517602d4a099d10163d Mon Sep 17 00:00:00 2001 From: David Muckle Date: Sun, 24 Dec 2023 15:58:06 -0500 Subject: [PATCH] Remove debug prints --- config/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/__init__.py b/config/__init__.py index 860e9750..acd6bbb6 100644 --- a/config/__init__.py +++ b/config/__init__.py @@ -140,11 +140,9 @@ def appversion() -> semantic_version.Version: # Running from source. For Linux, check to see if .gitversion file exists # If so, use it. This is also required for the Flatpak if pathlib.Path(sys.path[0] + "/" + GITVERSION_FILE).exists(): - print("Found .gitversion") with open(pathlib.Path(sys.path[0] + "/" + GITVERSION_FILE), encoding='utf-8') as gitv: shorthash = gitv.read() else: - print("Did not find .gitversion in " + sys.path[0] + "/" + GITVERSION_FILE) shorthash = git_shorthash_from_head() if shorthash is None: shorthash = 'UNKNOWN'