diff --git a/rest_auth/utils.py b/rest_auth/utils.py index eb61bd7..5c36b6b 100644 --- a/rest_auth/utils.py +++ b/rest_auth/utils.py @@ -1,3 +1,4 @@ +from six import string_types from django.utils.importlib import import_module @@ -5,7 +6,7 @@ def import_callable(path_or_callable): if hasattr(path_or_callable, '__call__'): return path_or_callable else: - assert isinstance(path_or_callable, (str, unicode)) + assert isinstance(path_or_callable, string_types) package, attr = path_or_callable.rsplit('.', 1) return getattr(import_module(package), attr)