We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fc8ed commit d0deb00Copy full SHA for d0deb00
lang/string_extractor/parsers/json_flag.py
@@ -3,11 +3,11 @@
3
4
def parse_json_flag(json, origin):
5
if "info" in json:
6
- write_text(json["info"], origin, comment=[
+ write_text(json["info"], origin, c_format=False, comment=[
7
"Please leave anything in <angle brackets> unchanged.",
8
"Description of JSON flag \"{}\"".format(json["id"])
9
])
10
if "restriction" in json:
11
- write_text(json["restriction"], origin,
+ write_text(json["restriction"], origin, c_format=False,
12
comment="Description of restriction of JSON flag \"{}\""
13
.format(json["id"]))
0 commit comments