Commit 0e4d79c4 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed #22882 -- Fixed a UnicodeDecodeError in flush.

Thanks djbaldey for the report.
parent 0a2bc6e6
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
from __future__ import unicode_literals

import sys
from importlib import import_module

+3 −0
Original line number Diff line number Diff line
@@ -10,3 +10,6 @@ Bugfixes
========

* Replace with actual issue (:ticket:`00000`).

* Fixed a ``UnicodeDecodeError`` when the ``flush`` error message contained
  Unicode characters (:ticket:`22882`).