mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-26 02:53:46 +03:00
Merge pull request #76 from Antwan86/master
Removes a warning due to the usage of django.utils.importlib which is deprecated. Includes backward compatibility for Django 1.5 & 1.6 + Python 2.6.
This commit is contained in:
commit
24af3512de
|
@ -1,5 +1,9 @@
|
||||||
from six import string_types
|
from six import string_types
|
||||||
|
import sys
|
||||||
|
if sys.version_info < (2, 7):
|
||||||
from django.utils.importlib import import_module
|
from django.utils.importlib import import_module
|
||||||
|
else:
|
||||||
|
from importlib import import_module
|
||||||
|
|
||||||
|
|
||||||
def import_callable(path_or_callable):
|
def import_callable(path_or_callable):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user