Fix typo.

This commit is contained in:
RecursiveGreen 2019-06-05 13:13:12 -04:00
parent 58dddd2d0d
commit f8ff8fa4a8

View file

@ -20,7 +20,7 @@ import magic
def scrub(text):
'''
Forcing a Unicode NFC normalization to remove combining marks that mess
with certain Python fucntions.
with certain Python functions.
'''
if text:
return unicodedata.normalize('NFC', text)