Remove invalid double-quote (") from the pathchar for url regex matching

This commit is contained in:
Stephen Boddy 2015-12-02 14:59:24 +01:00
parent caa0798503
commit bc85c0735f
1 changed files with 1 additions and 1 deletions

View File

@ -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,\\\"]"