Carsten Fuchs
Carsten Fuchs
I modified the above to replace the german Umlaute (äöüÄÖÜß) with something safe. Not elegant at all, but: ```python bits[-2] += rendered.replace('ä', 'XXX').replace('Ä', 'XXX').replace('ö', 'XXX').replace('Ö', 'XXX').replace('ü', 'XXX').replace('Ü', 'XXX').replace('ß', 'XXX').encode('ascii', 'backslashreplace').decode()...
I made some progress and eventually managed to find the surrogates that are mentioned in the stack trace: In one of my apps, I have static files with german umlaut...
@matthiask thanks for your hints! You're right, my filesystem encoding in Python was indeed set to ascii and I could resolve the problem by setting `LANG=de_DE.UTF-8` in the Apache `/etc/apache2/envvars`...
Thanks for the link! My project started in 2011 and even though I regularly work through all Release Notes very carefully, it is easy to miss such updates in the...
This is looking great! :-) If I understand things correctly though, it might be possible that an error that raises an exception (such as here with the surrogates) dominates the...
Oh, and this would be a check for the Django core, not for a Django app, not even a built-in.
This is very very unfortunate. In addition to the above, I've found these alternatives: - https://select2.org/ - https://choices-js.github.io/Choices/ - https://tom-select.js.org/ These appear to be modern and well maintained – however,...
Hello @whimboo , sorry for not having mentioned this explicitly: The problem does *not* occur when I start Firefox manually. When started manually, `about:support` is in German. Only when started...
> Ok, so the geckodriver that you are using here is the snap-packaged one as well, right? Yes. After my upgrade to Ubuntu 22.04 LTS I removed the geckodriver that...
This works: - I installed another Firefox as documented [here](https://support.mozilla.org/en-US/kb/install-firefox-linux#w_install-firefox-from-mozilla-builds-for-advanced-users) and took the recent geckodriver from [here](https://github.com/mozilla/geckodriver/releases). - If I change nothing else, then as expected the testcase picks up...