summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2018-08-11 00:15:24 -0400
committerGitHub <noreply@github.com>2018-08-11 00:15:24 -0400
commit3700bc83b39ebbf54259d0daebbadd422452fd6b (patch)
tree641e46c3afa02757cfd2427fba4b6a53f2f02a24
parentbbc034cd3dfc46ee7938faedc915fec91610c6a3 (diff)
parent4513bd6ea3773ebaae70bd2fa0a2b35c46eae2ff (diff)
Merge pull request #1105 from adafruit/tannewt-patch-3
Fix translation newlines
-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",