From 0e4d79c4f0591da3d2b0cf030cb8a79abe482345 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 6 Sep 2014 10:07:34 -0400 Subject: Fixed #22882 -- Fixed a UnicodeDecodeError in flush. Thanks djbaldey for the report. --- django/core/management/commands/flush.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'django') diff --git a/django/core/management/commands/flush.py b/django/core/management/commands/flush.py index 22c6f5e56e..02f558b31d 100644 --- a/django/core/management/commands/flush.py +++ b/django/core/management/commands/flush.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + import sys from importlib import import_module -- cgit v1.3