Add explicit 'lms.djangoapps' prefix to all commerce imports, as another commerce Django app exists at openedx.core.djangoapps.commerce
18 lines
357 B
Python
18 lines
357 B
Python
"""
|
|
Commerce Application Configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CommerceConfig(AppConfig):
|
|
"""
|
|
Application Configuration for Commerce.
|
|
"""
|
|
name = 'lms.djangoapps.commerce'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect handlers to signals.
|
|
"""
|
|
from . import signals # pylint: disable=unused-variable
|