diff --git a/contrib/export_playlist/export_playlist.py b/contrib/export_playlist/export_playlist.py index 8d0f71b..f5cf2f7 100644 --- a/contrib/export_playlist/export_playlist.py +++ b/contrib/export_playlist/export_playlist.py @@ -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)