diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 8743e2a6066a94f5af81f47f33c6ca94cc8b6672..3f2090cb03bcb3fbed703bb4296a8f0db2809d9e 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -21,6 +21,11 @@ Changed
 * Rewrite of frontend using Vuetify
 * OIDC scope "profile" now exposes the avatar instead of the official photo
 
+Fixed
+~~~~~
+
+* Error message in permission form was misleading.
+
 Removed
 ~~~~~~~
 
diff --git a/aleksis/core/forms.py b/aleksis/core/forms.py
index b3c3493e7d5ee0ee7f9b0fe7d01258a5459f26cf..05ebef2f4f3dd17124a4449ebe06b6622c1ad1be 100644
--- a/aleksis/core/forms.py
+++ b/aleksis/core/forms.py
@@ -496,7 +496,7 @@ class AssignPermissionForm(forms.Form):
 
         if not cleaned_data.get("objects") and not cleaned_data.get("all_objects"):
             raise ValidationError(
-                _("You must grant the permission to all objects and/" "or to some objects.")
+                _("You must grant the permission to all objects or to specific objects.")
             )
         return cleaned_data