Remove non-breaking spaces
Another impossible review! Some non-breaking spaces in logging messages were causing UTF-8 decoding errors in production.
git ls-files | xargs sed -i 's/ / /g'
(the first space is a non-breaking space, and the second is a normal space)