From 6bcb72f32e005f5efb0775994e4edd105721eca8 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Mon, 17 Feb 2020 19:44:05 +0100 Subject: [PATCH] ruamel/config: Use ruamel.yaml instead of yaml This removes the (undocumented) dependency on PyYAML and just uses ruamel.yaml that is already a dependency. Signed-off-by: Andreas Rammhold Signed-off-by: Thomas Gleixner --- remail/maillist.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/remail/maillist.py b/remail/maillist.py index 6b1b699..c970730 100644 --- a/remail/maillist.py +++ b/remail/maillist.py @@ -18,8 +18,9 @@ from email.utils import make_msgid, formatdate from email.policy import EmailPolicy from flufl.bounce import all_failures +from ruamel.yaml import YAML + import mailbox -import yaml import os class maillist(object): @@ -315,7 +316,7 @@ class maillist_checker(object): def __init__(self, configfile, logger): self.logger = logger try: - cfgdict = yaml.load(open(configfile)) + cfgdict = YAML().load(open(configfile)) except Exception as ex: txt = 'Failed to load list configfile %s' %configfile logger.log_exception(txt, ex)