Merge pull request #1105 from adafruit/tannewt-patch-3

Fix translation newlines
This commit is contained in:
Dan Halbert 2018-08-11 00:15:24 -04:00 committed by GitHub
commit 3700bc83b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ C_ESCAPES = {
"\a": "\\a", "\a": "\\a",
"\b": "\\b", "\b": "\\b",
"\f": "\\f", "\f": "\\f",
"\n": "\\r", "\n": "\\n",
"\r": "\\r", "\r": "\\r",
"\t": "\\t", "\t": "\\t",
"\v": "\\v", "\v": "\\v",