forked from jazkarta/obsolete-edx-sga
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use full import path to safe_lxml (v0.19.0)
Previously, edx-platform's safe_lxml module was imported as: import safe_lxml This still works, but will stop working very soon. This commit updates edx-sga's usage of safe_lxml to the new, correct import path: import openedx.core.lib.safe_lxml (Details & reasoning behind this import path change: * https://discuss.openedx.org/t/breaking-apart-edx-platforms-common-lib-folder/7556 * https://openedx.atlassian.net/browse/BOM-2579) This change is NOT backwards-compatible with Nutmeg or earlier. Bumps edx-sga version to 0.19.0.
- Loading branch information
1 parent
5182fcf
commit afd68c4
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Module for StaffGradedAssignmentXBlock. | ||
""" | ||
|
||
__version__ = "0.18.0" | ||
__version__ = "0.19.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters