You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An error occures with some characters (I assume utf-8 charachetrs). The error
is "incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string)".
I have fixed the problem on my machine, don't feel like submitting a patch, but
will describe the solution here:
rr_lib.rb:1660 and rr_lib.rb:1663: add 'n' to the end of the regex. So this
changes the line from
var.gsub!(/\342\200\230|\342\200\231/, "'") to
var.gsub!(/\342\200\230|\342\200\231/n, "'")
Original issue reported on code.google.com by [email protected] on 26 Jun 2014 at 12:58
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 26 Jun 2014 at 12:58The text was updated successfully, but these errors were encountered: