Skip to content

Commit

Permalink
chore: Address PR change requests
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan committed Sep 20, 2023
1 parent de4492d commit fdc1e17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xblock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ def __init__(self, *args, **kwargs):
# without causing a circular import
xblock.fields.XBlockMixin = XBlockMixin

__version__ = '2.0.0'
__version__ = '1.8.0'
4 changes: 2 additions & 2 deletions xblock/utils/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def render_mako_template(self, template_path, context=None):
Note: This function has been deprecated. Consider using Django templates or React UI instead of mako.
"""
warnings.warn(
'ResourceLoader.render_mako_template has been deprecated '
'Consider using Django templates or React UI instead of mako.',
'ResourceLoader.render_mako_template has been deprecated. '
'Use Django templates or React UI instead of mako.',
DeprecationWarning, stacklevel=3,
)
context = context or {}
Expand Down

0 comments on commit fdc1e17

Please sign in to comment.