Skip to content

Commit

Permalink
Fix markup import
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli committed Oct 12, 2023
1 parent 068d828 commit 8ae5e40
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
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 8ae5e40

Please sign in to comment.