Skip to content

Commit

Permalink
restores py27 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
smirolo committed Oct 12, 2023
1 parent d9b1feb commit 960085f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extended_templates/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class EditTools(models.Model):
"""
user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE,
db_column='user_id')
show_edit_tools = models.BooleanField(null=True, default=True,
show_edit_tools = models.BooleanField(default=True,
help_text=_("Show the online editor tools"))

def __str__(self):
Expand Down

0 comments on commit 960085f

Please sign in to comment.