fix: remove useless printf in getMessagesSinceTag()

This commit is contained in:
cclecle
2023-03-28 00:45:00 +01:00
parent 880fa29bbd
commit 82d4b1bd70

View File

@@ -163,9 +163,7 @@ class gitversionhelper: # pylint: disable=too-few-public-methods
the commit message
"""
current_commit_id = cls.getLast(**kwargs)
print(f"current_commit_id = {current_commit_id}")
tag_commit_id = cls.getFromTag(tag)
print(f"tag_commit_id = {tag_commit_id}")
str_cmd: str
if ("same_branch" in kwargs) and (kwargs["same_branch"] is True):