diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-08-07 15:41:54 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-08-08 14:50:01 +0200 |
| commit | 396357741b88dfcd85486db673dbb822da8b2de0 (patch) | |
| tree | 1a9a659339554858109be3e5cfafc188397699bf /tests/modeltests/serializers | |
| parent | 2da3af23aa10af3e06536a46134b1053f80eb8b2 (diff) | |
[py3] Used compatible imports of StringIO.
Diffstat (limited to 'tests/modeltests/serializers')
| -rw-r--r-- | tests/modeltests/serializers/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/serializers/tests.py b/tests/modeltests/serializers/tests.py index 9177227539..ec3cc132db 100644 --- a/tests/modeltests/serializers/tests.py +++ b/tests/modeltests/serializers/tests.py @@ -4,13 +4,13 @@ from __future__ import absolute_import, unicode_literals import json from datetime import datetime from xml.dom import minidom -from StringIO import StringIO from django.conf import settings from django.core import serializers from django.db import transaction, connection from django.test import TestCase, TransactionTestCase, Approximate from django.utils import six +from django.utils.six import StringIO from django.utils import unittest from .models import (Category, Author, Article, AuthorProfile, Actor, Movie, |
