From 3cbeaa887f2e8c8cf6bf458716e89ae7ef692340 Mon Sep 17 00:00:00 2001 From: Fredrik Eriksson Date: Sun, 5 Jul 2020 16:32:49 +0200 Subject: [PATCH] use ConfigParser instead of SafeConfigParser --- bin/zsnapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/zsnapper b/bin/zsnapper index 471aeb0..879898a 100644 --- a/bin/zsnapper +++ b/bin/zsnapper @@ -287,7 +287,7 @@ def weed_snapshots(fslist, snapshots, config, failed_snapshots): def main(): - config = configparser.SafeConfigParser() + config = configparser.ConfigParser() config.read('/etc/zsnapper.ini') ret = RET_CODES['SUCCESS'] log = logging.getLogger(LOGGER)