This PR silences the following warning:
DeprecationWarning: The SafeConfigParser class has been renamed to ConfigParser in Python 3.2. This alias will be removed in future versions. Use ConfigParser directly instead.
Maybe it can just use ConfigParser. For py2/3 compatibility, it's six.moves.configparser.ConfigParser.
ConfigParser
six.moves.configparser.ConfigParser
@cqi It already is using six.moves.configparser. See https://pagure.io/rpkg/blob/master/f/pyrpkg/init.py#_38 and https://pagure.io/rpkg/blob/master/f/pyrpkg/cli.py#_35
six.moves.configparser
Commit cc265757 fixes this pull-request
Pull-Request has been merged by onosek
This PR silences the following warning: