Skip to content

Commit

Permalink
hotfix - extended unicode characters not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Bender committed Oct 20, 2020
1 parent 17bb670 commit 0b43212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py27/bacpypes/local/object.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class CurrentPropertyListMixIn(Object):
u"A-Za-z"
u"\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF"
u"\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF"
u"\uFDF0-\uFFFD\U00010000-\U000EFFFF"
# u"\uFDF0-\uFFFD\U00010000-\U000EFFFF" - python2.7 on MacOS doesn't like it
)

PN_CHARS_U = PN_CHARS_BASE + u"_"
Expand Down

0 comments on commit 0b43212

Please sign in to comment.