From 506d61101fa01f3725930e50376b3bd0c4739723 Mon Sep 17 00:00:00 2001 From: Jawayria Date: Fri, 3 Sep 2021 19:18:36 +0500 Subject: [PATCH] chore: Removed django.utils.six as not supported in Django3 --- .../third_party_auth/management/commands/tests/test_saml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/third_party_auth/management/commands/tests/test_saml.py b/common/djangoapps/third_party_auth/management/commands/tests/test_saml.py index 390839f8bf..a1134903a4 100644 --- a/common/djangoapps/third_party_auth/management/commands/tests/test_saml.py +++ b/common/djangoapps/third_party_auth/management/commands/tests/test_saml.py @@ -6,12 +6,12 @@ existing data accordingly. import os import unittest +from io import StringIO from unittest import mock from django.conf import settings from django.core.management import call_command from django.core.management.base import CommandError -from django.utils.six import StringIO from requests import exceptions from requests.models import Response