summaryrefslogtreecommitdiff
path: root/src/mailman/rest/lists.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/rest/lists.py')
-rw-r--r--src/mailman/rest/lists.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mailman/rest/lists.py b/src/mailman/rest/lists.py
index e73cadf08..f6c9716f3 100644
--- a/src/mailman/rest/lists.py
+++ b/src/mailman/rest/lists.py
@@ -276,8 +276,7 @@ class ArchiverGetterSetter(GetterSetter):
# getting a new status. value will be the representation of the new
# boolean status.
archiver = self._archiver_set.get(attribute)
- if archiver is None:
- raise ValueError('No such archiver: {}'.format(attribute))
+ assert archiver is not None, attribute
archiver.is_enabled = as_boolean(value)