Skip to content

Commit

Permalink
restores py27 compatibility (take 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
smirolo committed Apr 12, 2024
1 parent 5f85140 commit 6a50b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def get_related_to(self, tag):
from_element__dest_element=self)

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
super(PageElement, self).__init__(*args, **kwargs)
self.__original_text = self.text

def save(self, force_insert=False, force_update=False,
Expand Down

0 comments on commit 6a50b7c

Please sign in to comment.