X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ab87154a392f53012eb62ca5da69536d6b4ac067..e9327dee290c524806c89e1c3cb546f95ee51e52:/apps/dictionary/models.py?ds=inline

diff --git a/apps/dictionary/models.py b/apps/dictionary/models.py
index f2a9ddf28..b22e4be42 100644
--- a/apps/dictionary/models.py
+++ b/apps/dictionary/models.py
@@ -25,7 +25,8 @@ def notes_from_book(sender, **kwargs):
     if sender.html_file:
         for anchor, text_str, html_str in html.extract_annotations(sender.html_file.path):
             Note.objects.create(book=sender, anchor=anchor,
-                               html=html_str, sort_key=sortify(text_str)[:128])
+                               html=html_str, 
+                               sort_key=sortify(text_str).strip()[:128])
 
 # always re-extract notes after making a HTML in a Book
 Book.html_built.connect(notes_from_book)