Explorar o código

fix url parsing through quotes

Nick Sweeting %!s(int64=5) %!d(string=hai) anos
pai
achega
3658153cf8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      archivebox/util.py

+ 1 - 1
archivebox/util.py

@@ -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,
 )