Open Fetzii opened 2 years ago
Thank you, @Fetzii! I'll investigate this issue, but it could be related to some bad handled encoding. I keep you posted on what I'll find.
It seems to me, that I have managed to fix the problem locally by changing line 234 in dumptools.py from:
line = line.decode("latin1")
to: line = line.decode(encoding="utf-8", errors="backslashreplace")
Description
Getting categories for a page with umlauts from my dewikicore (Cem Özdemir: https://de.wikipedia.org/wiki/Cem%C3%96zdemir) It crashes, what shouldn't happen. There is also an english wiki page for him (https://en.wikipedia.org/wiki/Cem_%C3%96zdemir)
What I Did