diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2018-08-10 16:17:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-10 16:17:03 -0700 |
| commit | 4513bd6ea3773ebaae70bd2fa0a2b35c46eae2ff (patch) | |
| tree | 641e46c3afa02757cfd2427fba4b6a53f2f02a24 /py/makeqstrdata.py | |
| parent | bbc034cd3dfc46ee7938faedc915fec91610c6a3 (diff) | |
Fix translation newlines
Escape table was incorrect
Diffstat (limited to 'py/makeqstrdata.py')
| -rw-r--r-- | py/makeqstrdata.py | 2 |
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", |
