From 0aed9a8ed2a0e86c100891bf288e85fdacbb0edc Mon Sep 17 00:00:00 2001 From: Craig Blaszczyk Date: Thu, 8 Jan 2015 18:05:42 +0000 Subject: [PATCH] use correct six import --- tests/test_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_settings.py b/tests/test_settings.py index cf0952122..a923c9db0 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals from django.core.exceptions import ImproperlyConfigured import pytest from django.test import TestCase -import six +from django.utils import six from rest_framework.settings import APISettings