mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
2226a74ef8
Updates python-dateutil to 2.8.2 Updates rebulk to 2.0.1
21 lines
393 B
Python
21 lines
393 B
Python
"""
|
|
Match processors
|
|
"""
|
|
from guessit.rules.common import seps
|
|
|
|
|
|
def strip(match, chars=seps):
|
|
"""
|
|
Strip given characters from match.
|
|
|
|
:param chars:
|
|
:param match:
|
|
:return:
|
|
"""
|
|
while match.input_string[match.start] in chars:
|
|
match.start += 1
|
|
while match.input_string[match.end - 1] in chars:
|
|
match.end -= 1
|
|
if not match:
|
|
return False
|