(no title)
throwaway7767 | 7 years ago
Renaming the files to use NFKC normalization fixed it. In python, you could loop through the files and do something like:
os.rename(originalfilename, unicodedata.normalize('NFKC', originalfilename.decode('utf8')))
EDIT: You'll probably need to do this on a non-Mac system, linux for example should work.
No comments yet.