Skip to content

Commit

Permalink
Escape escape property in utils/entities.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders committed May 20, 2016
1 parent 29e2472 commit db508dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def entity_characters(inp):


def codepoint_to_character(inp):
return ("\U000" + inp[2:]).decode("unicode-escape")
return ("\\U000" + inp[2:]).decode("unicode-escape")


def make_tests_json(entities):
Expand Down

0 comments on commit db508dc

Please sign in to comment.