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/regressiontests/createsuperuser | |
| parent | 2da3af23aa10af3e06536a46134b1053f80eb8b2 (diff) | |
[py3] Used compatible imports of StringIO.
Diffstat (limited to 'tests/regressiontests/createsuperuser')
| -rw-r--r-- | tests/regressiontests/createsuperuser/tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/regressiontests/createsuperuser/tests.py b/tests/regressiontests/createsuperuser/tests.py index 1c1bb0ed38..7303b1f2e7 100644 --- a/tests/regressiontests/createsuperuser/tests.py +++ b/tests/regressiontests/createsuperuser/tests.py @@ -1,9 +1,8 @@ -from StringIO import StringIO - from django.contrib.auth import models from django.contrib.auth.management.commands import changepassword from django.core.management import call_command from django.test import TestCase +from django.utils.six import StringIO class MultiDBChangepasswordManagementCommandTestCase(TestCase): |
