From 425f34e0cbf80f79f6cf6c7ab7f89ee50b4b2572 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 17 Jun 2021 20:36:20 +0200 Subject: [PATCH] add new renderer arg to ckeditor monkeypatch (2.2 compat) --- chloro/monkeypatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chloro/monkeypatch.py b/chloro/monkeypatch.py index 62ce971..c0c7142 100644 --- a/chloro/monkeypatch.py +++ b/chloro/monkeypatch.py @@ -27,7 +27,7 @@ import ckeditor.widgets from ckeditor.image import pillow_backend -def ckeditor_render(self, name, value, attrs=None): +def ckeditor_render(self, name, value, attrs=None, renderer=None): if value is None: value = '' final_attrs = {'name': name} -- 2.39.2