We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86eb856 commit 38d57cdCopy full SHA for 38d57cd
CHANGELOG.md
@@ -1,5 +1,8 @@
1
## Change log
2
3
+### 0.2.6
4
++ Add cr, tab to contract text encoding
5
+
6
### 0.2.5
7
+ Rename contract 'register' to 'register_contract_name'
8
convex_api/contract.py
@@ -188,4 +188,6 @@ def escape_string(text):
188
"""
189
escape_text = re.sub('\\\\', '\\\\\\\\', text)
190
escape_text = re.sub('"', '\\"', escape_text)
191
+ escape_text = re.sub('\n', '\\\\n', escape_text)
192
+ escape_text = re.sub('\t', '\\\\t', escape_text)
193
return escape_text
0 commit comments