8000 Fix translation newlines · sparkfun/circuitpython@4513bd6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4513bd6

Browse files
authored
Fix translation newlines
Escape table was incorrect
1 parent bbc034c commit 4513bd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/makeqstrdata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"\a": "\\a",
5959
"\b": "\\b",
6060
"\f": "\\f",
61-
"\n": "\\r",
61+
"\n": "\\n",
6262
"\r": "\\r",
6363
"\t": "\\t",
6464
"\v": "\\v",

0 commit comments

Comments
 (0)
0