diff options
Diffstat (limited to 'src/mailman_pgp/model/list.py')
| -rw-r--r-- | src/mailman_pgp/model/list.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mailman_pgp/model/list.py b/src/mailman_pgp/model/list.py index 946af34..d80f4a7 100644 --- a/src/mailman_pgp/model/list.py +++ b/src/mailman_pgp/model/list.py @@ -16,7 +16,6 @@ # this program. If not, see <http://www.gnu.org/licenses/>. """Model for PGP enabled mailing lists.""" -from lazr.config import as_boolean from mailman.database.types import Enum, SAUnicode from mailman.interfaces.action import Action from mailman.interfaces.listmanager import (IListManager, ListDeletingEvent) @@ -145,7 +144,7 @@ class PGPMailingList(Base): @classhandler.handler(ListDeletingEvent) def on_delete(event): - shred = as_boolean(config.get('keypairs', 'shred')) + shred = config.get_value('keypairs', 'shred') pgp_list = PGPMailingList.for_list(event.mailing_list) if pgp_list: with transaction() as session: |
