Use ConfigParser instead of SafeConfigParser in glue.pipeline
This MR replaces the single use of configparser.SafeConfigParser
to configparser.ConfigParser
in glue.pipeline
.
SafeConfigParser
was renamed ConfigParser
in Python 3.2, and finally removed in Python 3.12.