Trivial case update

This commit is contained in:
Miroslav Stampar
2019-05-20 11:24:43 +02:00
parent 4cc13d3c1e
commit b9151ca5c5
6 changed files with 12 additions and 12 deletions

4
lib/core/convert.py Executable file → Normal file
View File

@@ -70,11 +70,11 @@ def base64unpickle(value):
return retVal
def htmlunescape(value):
def htmlUnescape(value):
"""
Returns (basic conversion) HTML unescaped value
>>> htmlunescape('a<b')
>>> htmlUnescape('a<b')
'a<b'
"""