Fix settings import paths

This commit is contained in:
Régis Behmo 2019-02-12 08:26:50 +01:00
parent ed8606e63c
commit 486e5c5794
5 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## Latest
- [Bugfix] Fix import paths -- 🚀 thanks @silviot!
## 3.0.1 (2019-06-11)
- [Bugfix] fix mysql initialization (#159, #160)

View File

@ -1,4 +1,4 @@
from cms.env.devstack import *
from cms.envs.devstack import *
INSTALLED_APPS.remove('openedx.core.djangoapps.datadog.apps.DatadogConfig')

View File

@ -1,4 +1,4 @@
from cms.env.aws import *
from cms.envs.aws import *
INSTALLED_APPS.remove('openedx.core.djangoapps.datadog.apps.DatadogConfig')

View File

@ -1,4 +1,4 @@
from lms.env.devstack import *
from lms.envs.devstack import *
INSTALLED_APPS.remove('openedx.core.djangoapps.datadog.apps.DatadogConfig')

View File

@ -1,4 +1,4 @@
from lms.env.aws import *
from lms.envs.aws import *
INSTALLED_APPS.remove('openedx.core.djangoapps.datadog.apps.DatadogConfig')