summaryrefslogtreecommitdiff
path: root/py/makeqstrdata.py
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2018-08-10 16:17:03 -0700
committerGitHub <noreply@github.com>2018-08-10 16:17:03 -0700
commit4513bd6ea3773ebaae70bd2fa0a2b35c46eae2ff (patch)
tree641e46c3afa02757cfd2427fba4b6a53f2f02a24 /py/makeqstrdata.py
parentbbc034cd3dfc46ee7938faedc915fec91610c6a3 (diff)
Fix translation newlines
Escape table was incorrect
Diffstat (limited to 'py/makeqstrdata.py')
-rw-r--r--py/makeqstrdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/makeqstrdata.py b/py/makeqstrdata.py
index 4be71a8d9..adf065c72 100644
--- a/py/makeqstrdata.py
+++ b/py/makeqstrdata.py
@@ -58,7 +58,7 @@ C_ESCAPES = {
"\a": "\\a",
"\b": "\\b",
"\f": "\\f",
- "\n": "\\r",
+ "\n": "\\n",
"\r": "\\r",
"\t": "\\t",
"\v": "\\v",