fix line length
Browse files- pytube/cipher.py +3 -1
pytube/cipher.py
CHANGED
@@ -53,7 +53,9 @@ def get_initial_function_name(js: str) -> str:
|
|
53 |
regex = re.compile(pattern)
|
54 |
results = regex.search(js)
|
55 |
if results:
|
56 |
-
logger.debug(
|
|
|
|
|
57 |
return results.group(1)
|
58 |
|
59 |
raise RegexMatchError(caller="get_initial_function_name", pattern="multiple")
|
|
|
53 |
regex = re.compile(pattern)
|
54 |
results = regex.search(js)
|
55 |
if results:
|
56 |
+
logger.debug(
|
57 |
+
"finished regex search, matched: {pattern}".format(pattern=pattern)
|
58 |
+
)
|
59 |
return results.group(1)
|
60 |
|
61 |
raise RegexMatchError(caller="get_initial_function_name", pattern="multiple")
|