Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
074b83ab
Commit
074b83ab
authored
Feb 10, 2016
by
Renzo Lucioni
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11511 from edx/renzo/programs-warning
Address ProgramsApiConfig deprecation warning
parents
d5cee7b3
38094227
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
openedx/core/djangoapps/programs/signals.py
+4
-1
No files found.
openedx/core/djangoapps/programs/signals.py
View file @
074b83ab
...
...
@@ -6,7 +6,6 @@ import logging
from
django.dispatch
import
receiver
from
openedx.core.djangoapps.signals.signals
import
COURSE_CERT_AWARDED
from
openedx.core.djangoapps.programs.models
import
ProgramsApiConfig
LOGGER
=
logging
.
getLogger
(
__name__
)
...
...
@@ -35,6 +34,10 @@ def handle_course_cert_awarded(sender, user, course_key, mode, status, **kwargs)
None
"""
# Import here instead of top of file since this module gets imported before
# the programs app is loaded, resulting in a Django deprecation warning.
from
openedx.core.djangoapps.programs.models
import
ProgramsApiConfig
if
not
ProgramsApiConfig
.
current
()
.
is_certification_enabled
:
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment