diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-10-14 20:24:57 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-10-14 21:21:07 +0200 |
| commit | 42a67ec1cd8cbaffd87f0a7b34714f7d4a259cfb (patch) | |
| tree | b28115ca087f6d13f4a867b99394e1a8813a393e /django | |
| parent | 8ab5f1fe4750105dae734764baed54bd4d22792b (diff) | |
Fixed #21269 -- Don't crash when CommandError contains non-ascii
Thanks kontakt@eikefoken.de for the report.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py index 1aba53dd01..17b8ab71af 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -3,6 +3,8 @@ Base classes for writing management commands (named commands which can be executed through ``django-admin.py`` or ``manage.py``). """ +from __future__ import unicode_literals + import os import sys |
