Skip to content
Snippets Groups Projects
Commit f261e40d authored by Dariusz Kędzierski's avatar Dariusz Kędzierski Committed by Jason Salyers
Browse files

Guard escape_characters with assert

parent 8cb9ebb9
No related branches found
No related tags found
2 merge requests!456Release candidate v1 24,!370Jsalyers muting at sql level
...@@ -68,6 +68,7 @@ def to_nai(value): ...@@ -68,6 +68,7 @@ def to_nai(value):
def escape_characters(text): def escape_characters(text):
""" Escape special charactes """ """ Escape special charactes """
assert isinstance(text, str), "Expected string got: {}".format(type(text))
if len(text.strip()) == 0: if len(text.strip()) == 0:
return "'" + text + "'" return "'" + text + "'"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment