Closed mrshu closed 9 years ago
cc @Adman
Note that it is ASCII 0x15 character, not 0x0F.
@pepol I'm not so sure about that. Here is what Python outputs for me
u"\x0302\x1fhttp://git.io/ELctCQ\x0f"
In general one way of fixing this would be to make the regex stop taking stuff once it finds \x
Oh sorry, I must've remembered it wrong then...
@pepol np, this should be one line fix anyway, care to do the honours?
@mrshu see #39.
When a new commit gets merged or pull request gets created URL matcher currently matches something like
http://git.io/ELctCQ<EOC>
where<EOC>
is ASCII 15 character. I believe we should somehow get around this.