# HG changeset patch # User Jeff Hammel # Date 1606258122 28800 # Node ID 81e0743dbe53d8ccd1bea89439ba4860301a606a # Parent c570adf77a48ccb30cf414f692e59794344a30b1 py3 diff -r c570adf77a48 -r 81e0743dbe53 martini/config.py --- a/martini/config.py Thu Feb 23 09:06:21 2017 -0800 +++ b/martini/config.py Tue Nov 24 14:48:42 2020 -0800 @@ -68,9 +68,9 @@ """ return OrderedDict(self.items(section)) - def get(self, section, option, default=None, raw=False, vars=None): + def get(self, section, option, default=None, **kw) try: - value = ConfigParser.get(self, section, option, raw, vars) + value = ConfigParser.get(self, section, option, **kw) except NoOptionError: return default return value