On Wed, Oct 23, 2013 at 2:45 AM, Felipe Contreras <felipe.contreras@xxxxxxxxx> wrote: > On Tue, Oct 22, 2013 at 3:49 PM, Antoine Pelisse <apelisse@xxxxxxxxx> wrote: > >> It is true that I have expected "valid output" from git-fast-export. >> And I don't have in mind any easy solution to detect that the output >> is broken, yet still accepted as a valid string by python. We could >> obviously write a unquote_c_style() equivalent in python if needed. > > Something like this? > > def c_style_unescape(string): > if string[0] == string[-1] == '"': > return string.decode('string-escape')[1:-1] > return string > > It's in git-remote-bzr.py. Yeah, that's certainly better, Thanks, -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html