File howdy-pam-python3.patch of Package howdy
Index: howdy-2.6.1/src/pam.py =================================================================== --- howdy-2.6.1.orig/src/pam.py +++ howdy-2.6.1/src/pam.py @@ -7,10 +7,10 @@ import glob import syslog # pam-python is running python 2, so we use the old module here -import ConfigParser +import configparser # Read config from disk -config = ConfigParser.ConfigParser() +config = configparser.ConfigParser() config.read(os.path.dirname(os.path.abspath(__file__)) + "/config.ini")