From 1ff058b88d127ab070e115eff42f821272b5d8f9 Mon Sep 17 00:00:00 2001
From: Jonathan Weth <teckids@jonathanweth.de>
Date: Mon, 8 Jun 2020 13:40:57 +0200
Subject: [PATCH] Apply suggestion to aleksis/core/models.py

---
 aleksis/core/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aleksis/core/models.py b/aleksis/core/models.py
index 9818849d0..48b23a4b0 100644
--- a/aleksis/core/models.py
+++ b/aleksis/core/models.py
@@ -73,7 +73,7 @@ class SchoolYear(ExtensibleModel):
         return cls.get_current()
 
     def clean(self):
-        """Ensure there is only one school year of each point of time."""
+        """Ensure there is only one school year at each point of time."""
         if self.date_end < self.date_start:
             raise ValidationError(_("The start date must be earlier than the end date."))
 
-- 
GitLab