`SafeConfigParser` was renamed to `ConfigParser` in Python 3.2, and Python warns us: > scylla-housekeeping:183: DeprecationWarning: The SafeConfigParser > class has been renamed to ConfigParser in Python 3.2. This alias will > be removed in Python 3.12. Use ConfigParser directly instead. see https://docs.python.org/3.2/library/configparser.html#configparser.ConfigParser and https://docs.python.org/3.1/library/configparser.html#configparser.SafeConfigParser Fixes #13046 Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#19285