# HG changeset patch # User Jeff Hammel # Date 1606258295 28800 # Node ID fb4bdbfbce83f253d7ffec35b2b326b007634af2 # Parent c0d53e920bd12418cd447a360196e25533f9429b py3 diff -r c0d53e920bd1 -r fb4bdbfbce83 decoupage/web.py --- a/decoupage/web.py Tue Nov 03 11:14:15 2020 -0800 +++ b/decoupage/web.py Tue Nov 24 14:51:35 2020 -0800 @@ -355,7 +355,7 @@ if os.path.exists(ini_path): _conf = ConfigMunger(ini_path).dict() if len(_conf) == 1: - conf = _conf[_conf.keys()[0]].copy() + conf = _conf[list(_conf.keys())[0]].copy() # global configuration if not conf and self.configuration and os.path.exists(self.configuration):