diff --git a/ChangeLog b/ChangeLog index 52d93e5b..28049449 100644 --- a/ChangeLog +++ b/ChangeLog @@ -60,6 +60,8 @@ terminator trunk: LP#1520360) * Fix PuTTY paste mode so Ctrl-Right-Drag terminal still works (Steve Boddy) + * Remove invalid double-quote (") from the pathchar for url regex + matching (Steve Boddy, LP#1514578) terminator 0.98: * Features diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index ded12510..b970aa5f 100755 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -265,7 +265,7 @@ class Terminal(gtk.VBox): userchars = "-A-Za-z0-9" passchars = "-A-Za-z0-9,?;.:/!%$^*&~\"#'" hostchars = "-A-Za-z0-9" - pathchars = "-A-Za-z0-9_$.+!*(),;:@&=?/~#%'\"" + pathchars = "-A-Za-z0-9_$.+!*(),;:@&=?/~#%'" schemes = "(news:|telnet:|nntp:|file:/|https?:|ftps?:|webcal:)" user = "[" + userchars + "]+(:[" + passchars + "]+)?" urlpath = "/[" + pathchars + "]*[^]'.}>) \t\r\n,\\\"]"