From 31e685da8fcacb22ff84c204e87ab8ed3b3308d4 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Thu, 5 May 2022 09:17:16 -0500 Subject: [PATCH] Revert extra print statement in validate command Ticket: CFE-3905 Changelog: none --- cfbs/validate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cfbs/validate.py b/cfbs/validate.py index e4596a18..f127525c 100644 --- a/cfbs/validate.py +++ b/cfbs/validate.py @@ -84,7 +84,6 @@ def validate_version(name, modules): raise CFBSIndexException(name, "Missing required attribute 'version'") if type(modules[name]["version"]) != str: raise CFBSIndexException(name, "'version' must be of type string") - print("validating version {}".format(modules[name]["version"])) regex = r"(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-([0-9]+))?" if re.fullmatch(regex, modules[name]["version"]) == None: raise CFBSIndexException(name, "'version' must match regex %s" % regex)