Fixed #22882 -- Fixed a UnicodeDecodeError in flush.

Thanks djbaldey for the report.
This commit is contained in:
Tim Graham 2014-09-06 10:07:34 -04:00
parent 0a2bc6e6bd
commit 0e4d79c4f0
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,5 @@
from __future__ import unicode_literals
import sys
from importlib import import_module

View File

@ -10,3 +10,6 @@ Bugfixes
========
* Replace with actual issue (:ticket:`00000`).
* Fixed a ``UnicodeDecodeError`` when the ``flush`` error message contained
Unicode characters (:ticket:`22882`).