diff --git a/scipost_django/markup/templatetags/automarkup.py b/scipost_django/markup/templatetags/automarkup.py index db4c713e2a1f233d8a311f8362f56ef5a6a59af2..1345b1b0be2648d9e74bfbf131529c57f56a1981 100644 --- a/scipost_django/markup/templatetags/automarkup.py +++ b/scipost_django/markup/templatetags/automarkup.py @@ -16,7 +16,7 @@ register = template.Library() @register.simple_tag(takes_context=True) def automarkup(context, text, language_forced=None): markup = process_markup(text, language_forced=language_forced) - if markup["errors"] and context["request"]: + if markup["errors"] and "request" in context and context["request"]: # Create a ticket (if not yet present) flagging the error for page's # url if automarkup called in template (so if context.request exists) markup_queue = Queue.objects.get(name="Markup")