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
38094227
Commit
38094227
authored
Feb 10, 2016
by
Renzo Lucioni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Address ProgramsApiConfig deprecation warning
parent
5d0ed333
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 @
38094227
...
...
@@ -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