Skip to content

Commit

Permalink
fixup! fixup! insll mod
Browse files Browse the repository at this point in the history
  • Loading branch information
em92 committed Feb 24, 2024
1 parent 6947383 commit 6072d58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qllr/templating.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

try:
from jinja2 import contextfunction
except ImportError:
from jinja2 import pass_context as contextfunction # pragma: nocover
except ImportError: # pragma: nocover
from jinja2 import pass_context as contextfunction

try:
from jinja2 import escape
except ImportError:
from MarkupSafe import escape # pragma: nocover
except ImportError: # pragma: nocover
from MarkupSafe import escape


def render_ql_nickname(nickname):
Expand Down

0 comments on commit 6072d58

Please sign in to comment.