INCR-380 python 3 compatibility

This commit is contained in:
Ayub khan
2019-07-10 15:16:58 +05:00
parent 92c7a43011
commit 1f2d15f540
2 changed files with 4 additions and 1 deletions

View File

@@ -2,8 +2,9 @@
Information about the release line of this Open edX code.
"""
import unittest
from __future__ import absolute_import
import unittest
# The release line: an Open edX release name ("ficus"), or "master".
# This should always be "master" on the master branch, and will be changed

View File

@@ -1,6 +1,8 @@
"""
Django storage backends for Open edX.
"""
from __future__ import absolute_import
from django.contrib.staticfiles.storage import StaticFilesStorage
from django.core.files.storage import get_storage_class
from django.utils.lru_cache import lru_cache