diff options
| author | Barry Warsaw | 2012-03-17 12:54:26 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2012-03-17 12:54:26 -0400 |
| commit | 8e6cca71e8b6b0e79394aaf2c1d13d7cfce41c29 (patch) | |
| tree | 4d107a8b995f113feed454bd8662986cff8888ba /src/mailman/rest/lists.py | |
| parent | 5aa8f097f1d7a96500ccd2ccfa2fedd6ac830786 (diff) | |
| parent | 24991d17919f2715a7f2e875d2fb7fe72e53efcf (diff) | |
| download | mailman-8e6cca71e8b6b0e79394aaf2c1d13d7cfce41c29.tar.gz mailman-8e6cca71e8b6b0e79394aaf2c1d13d7cfce41c29.tar.zst mailman-8e6cca71e8b6b0e79394aaf2c1d13d7cfce41c29.zip | |
Diffstat (limited to 'src/mailman/rest/lists.py')
| -rw-r--r-- | src/mailman/rest/lists.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mailman/rest/lists.py b/src/mailman/rest/lists.py index c95c9a88a..3374e8f73 100644 --- a/src/mailman/rest/lists.py +++ b/src/mailman/rest/lists.py @@ -137,10 +137,7 @@ class AList(_ListBase): """Delete the named mailing list.""" if self._mlist is None: return http.not_found() - remove_list(self._mlist.fqdn_listname, self._mlist, - # XXX 2010-07-06 barry we need a way to remove the list - # archives either with the mailing list or afterward. - archives=False) + remove_list(self._mlist.fqdn_listname, self._mlist) return no_content() @resource.child(member_matcher) |
