diff options
author | luxagraf <sng@luxagraf.net> | 2025-04-07 19:24:11 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2025-04-07 19:24:11 -0500 |
commit | cb7916afb02fae346181f7aa7decbe39b0e3dfb9 (patch) | |
tree | 3e2d28038025b3e41ce34932bcc65f7dbf2b43fe /app/notes | |
parent | 33a7287ee0d4571104575b7db1dfbc0d9467aaf9 (diff) |
notes: bug fix
Diffstat (limited to 'app/notes')
-rw-r--r-- | app/notes/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/models.py b/app/notes/models.py index eb3faeb..76670f5 100644 --- a/app/notes/models.py +++ b/app/notes/models.py @@ -3,7 +3,7 @@ import datetime from django.db import models from django.urls import reverse from django.utils import timezone -from django.utils.html import format_html +from django.utils.html import format_html, format_html_join from taggit.managers import TaggableManager from utils.util import markdown_to_html |