Skip to content

Commit d8f5019

Browse files
authored
Merge pull request #68 from helloflask/fix-markup-import
2 parents 068d828 + 286b5d2 commit d8f5019

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@ jobs:
4141
- uses: actions/setup-python@v2
4242
- run: python -m pip install --upgrade pip wheel
4343
- run: pip install tox codecov
44-
- run: tox -e covarage
44+
- run: tox
45+
- run: tox -e coverage
4546
- run: codecov

CHANGES.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ Rlease date: -
1111
- Remove the deprecated ``codesnippet`` argument in ``ckeditor.config()``.
1212

1313

14+
0.4.7
15+
-----
16+
17+
Release date: -
18+
19+
- Fix the compatiable issue with Flask 3.0
20+
21+
1422
0.4.6
1523
-----
1624

flask_ckeditor/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import warnings
22
from functools import wraps
3-
from flask import current_app, Markup, Blueprint, url_for, request, jsonify, render_template_string
3+
from flask import current_app, Blueprint, url_for, request, jsonify, render_template_string
4+
from markupsafe import Markup
45

56
from flask_ckeditor.fields import CKEditorField # noqa
67
from flask_ckeditor.utils import get_url, random_filename # noqa

0 commit comments

Comments
 (0)