From b15d0413b31af80f885f7fffd93553eda47f4459 Mon Sep 17 00:00:00 2001 From: Stavros Korokithakis Date: Sat, 18 Jul 2020 17:44:37 +0300 Subject: [PATCH] Fix python_2_unicode_compatible import error (closes #26) --- django_slack_oauth/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_slack_oauth/models.py b/django_slack_oauth/models.py index cecf6d7..d2308ab 100644 --- a/django_slack_oauth/models.py +++ b/django_slack_oauth/models.py @@ -4,7 +4,7 @@ from django.conf import settings from django.db import models -from django.utils.encoding import python_2_unicode_compatible +from six import python_2_unicode_compatible __all__ = (