From 1ea36320c08942dca169beb822307626c3f8331f Mon Sep 17 00:00:00 2001 From: Johannes Habel Date: Sun, 4 Feb 2024 13:37:56 +0100 Subject: [PATCH] - fixed viewkey extraction on playlist url - 4.4.2 --- pyproject.toml | 2 +- src/phub/consts.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 464b908..c9db394 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "phub" -version = "4.4.1" +version = "4.4.2" description = "An API for Pornhub" authors = [ {name = 'Egsagon', email = "egsagon12@gmail.com"}, diff --git a/src/phub/consts.py b/src/phub/consts.py index 1323508..d813b48 100644 --- a/src/phub/consts.py +++ b/src/phub/consts.py @@ -81,7 +81,6 @@ def find(*args) -> WrappedRegex: def wrapper(string: str, throw: bool = True): - print(string) matches = regex.findall(string) if throw and not matches: logger.error('Pattern \033[91m%s\033[0m failed', pattern)