Skip to content

Commit

Permalink
Merge pull request #68 from helloflask/fix-markup-import
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli authored Oct 12, 2023
2 parents 068d828 + 286b5d2 commit d8f5019
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@ jobs:
- uses: actions/setup-python@v2
- run: python -m pip install --upgrade pip wheel
- run: pip install tox codecov
- run: tox -e covarage
- run: tox
- run: tox -e coverage
- run: codecov
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ Rlease date: -
- Remove the deprecated ``codesnippet`` argument in ``ckeditor.config()``.


0.4.7
-----

Release date: -

- Fix the compatiable issue with Flask 3.0


0.4.6
-----

Expand Down
3 changes: 2 additions & 1 deletion flask_ckeditor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import warnings
from functools import wraps
from flask import current_app, Markup, Blueprint, url_for, request, jsonify, render_template_string
from flask import current_app, Blueprint, url_for, request, jsonify, render_template_string
from markupsafe import Markup

from flask_ckeditor.fields import CKEditorField # noqa
from flask_ckeditor.utils import get_url, random_filename # noqa
Expand Down

0 comments on commit d8f5019

Please sign in to comment.