From 2f59c8df22c3dbdd47ece2a9210b07cf3d02ead4 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Mon, 26 Oct 2020 01:10:41 +0100 Subject: [PATCH] And of course I missed something ... --- allianceauth/groupmanagement/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/groupmanagement/models.py b/allianceauth/groupmanagement/models.py index 861872ef..250b40b1 100644 --- a/allianceauth/groupmanagement/models.py +++ b/allianceauth/groupmanagement/models.py @@ -107,7 +107,7 @@ class AuthGroup(models.Model): help_text="States listed here will have the ability to join this group provided " "they have the proper permissions.") - description = models.TextField(max_length=512, blank=True, help_text="Short description (max. 512 characters) of the group shown to users.") + description = models.TextField(max_length=512, null=True, blank=True, help_text="Short description (max. 512 characters) of the group shown to users.") def __str__(self): return self.group.name