Skip to content

Commit be53ca8

Browse files
Remove debug print statements (#67)
* Remove debug print statements * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d48b79b commit be53ca8

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
current_version = 0.11.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
4-
serialize =
4+
serialize =
55
{major}.{minor}.{patch}.{release}{relver}
66
{major}.{minor}.{patch}
77
commit = True
@@ -12,7 +12,7 @@ message = Release {new_version}
1212

1313
[bumpversion:part:release]
1414
optional_value = gamma
15-
values =
15+
values =
1616
dev
1717
a
1818
b

changes/66.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove debug print statements

giturlparse/parser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def parse(url, check_domain=True):
3535

3636
# Skip if not matched
3737
if not match:
38-
print("[{}] URL: {} dit not match {}".format(name, url, regex.pattern))
3938
continue
4039

4140
# Skip if domain is bad

giturlparse/platforms/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def __init__(self):
3535

3636
@staticmethod
3737
def clean_data(data):
38-
print(data)
3938
data["path"] = ""
4039
data["branch"] = ""
4140
data["protocols"] = list(filter(lambda x: x, data.get("protocols", "").split("+")))

0 commit comments

Comments
 (0)