1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

fix url parsing through quotes

This commit is contained in:
Nick Sweeting 2020-08-18 08:04:57 -04:00
parent a218ceb4e8
commit 3658153cf8

View file

@ -59,7 +59,7 @@ URL_REGEX = re.compile(
r'(?:[a-zA-Z]|[0-9]' # followed by allowed alphanum characters
r'|[$-_@.&+]|[!*\(\),]' # or allowed symbols
r'|(?:%[0-9a-fA-F][0-9a-fA-F]))' # or allowed unicode bytes
r'[^\]\[\(\)<>\""\'\s]+', # stop parsing at these symbols
r'[^\]\[\(\)<>"\'\s]+', # stop parsing at these symbols
re.IGNORECASE,
)