From b4fdad407eecfef6b500f64648cea73ec493cac8 Mon Sep 17 00:00:00 2001 From: tomasvana10 Date: Fri, 3 May 2024 19:06:53 +1000 Subject: [PATCH] Remove print statement from commits.py --- commits2pdf/commits.py | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/commits2pdf/commits.py b/commits2pdf/commits.py index 616b20b..792927c 100644 --- a/commits2pdf/commits.py +++ b/commits2pdf/commits.py @@ -110,7 +110,6 @@ def _validate_branch(self, r: Repo) -> bool | None: try: # The branch they want does not exist, so access the active branch b: Head = r.active_branch - print("got new active branch", b) except TypeError: return logger.error(DETACHED_BRANCH_ERROR.format(self.branch)) diff --git a/setup.py b/setup.py index c4f538a..289b706 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="commits2pdf", - version="1.1.9", + version="1.1.10", author="Tomas Vana", url="https://github.com/tomasvana10/commits2pdf", description="View a filtered commit history in PDF form.",