Commit db8763fb authored by Tim Graham's avatar Tim Graham
Browse files

Refs #25677 -- Fixed Python 2 i18n test failure on non-ASCII path.

parent 80bcbecd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ class PoFileTests(MessageCompilationTests):
        try:
            call_command('compilemessages', locale=['en'], stderr=err_buffer, verbosity=0)
            err = err_buffer.getvalue()
            self.assertIn("not writable location", err)
            self.assertIn("not writable location", force_text(err))
        finally:
            os.chmod(mo_file_en, old_mode)