X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ddaff853c515ef7d188523d9ef17d271901dd581..1e8106c22075bb70882feb849f716acc008d43f4:/apps/dictionary/models.py?ds=sidebyside

diff --git a/apps/dictionary/models.py b/apps/dictionary/models.py
index 375bb22ca..7df3d75e3 100644
--- a/apps/dictionary/models.py
+++ b/apps/dictionary/models.py
@@ -27,9 +27,9 @@ def build_notes(book):
         from librarian import html
         for anchor, text_str, html_str in html.extract_annotations(book.html_file.path):
             Note.objects.create(book=book, anchor=anchor,
-                               html=html_str, 
+                               html=html_str,
                                sort_key=sortify(text_str).strip()[:128])
-    
+
 def notes_from_book(sender, **kwargs):
     build_notes.delay(sender)
 Book.html_built.connect(notes_from_book)