X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/db91f942ce46e3af1420f3469a83257ef5aca4c2..refs/heads/master:/src/librarian/elements/headers/podtytul_podrozdzial.py

diff --git a/src/librarian/elements/headers/podtytul_podrozdzial.py b/src/librarian/elements/headers/podtytul_podrozdzial.py
index cc00207..e9d0208 100644
--- a/src/librarian/elements/headers/podtytul_podrozdzial.py
+++ b/src/librarian/elements/headers/podtytul_podrozdzial.py
@@ -1,7 +1,12 @@
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
+#
 from ..base import WLElement
 
 
 class PodtytulPodrozdzial(WLElement):
+    NUMBERING = 'i'
+
     TXT_TOP_MARGIN = 2
     TXT_BOTTOM_MARGIN = 2
 
@@ -11,7 +16,7 @@ class PodtytulPodrozdzial(WLElement):
     EPUB_TAG = "h2"
     EPUB_CLASS = "h4"
 
-    def _epub_build_inner(self, builder):
+    def epub_build_inner(self, builder):
         builder.start_element('small', {})
-        super()._epub_build_inner(builder)
+        super().epub_build_inner(builder)
         builder.end_element()