Merge pull request #21035 from edx/INCR-380

INCR-380 python 3 compatibility
This commit is contained in:
Ayub
2019-07-19 12:25:43 +05:00
committed by GitHub
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