# HG changeset patch # User Jeff Hammel # Date 1606258170 28800 # Node ID 93c198d9bf843595aef4ed20edeca1402f56e782 # Parent 81e0743dbe53d8ccd1bea89439ba4860301a606a syntax diff -r 81e0743dbe53 -r 93c198d9bf84 martini/config.py --- a/martini/config.py Tue Nov 24 14:48:42 2020 -0800 +++ b/martini/config.py Tue Nov 24 14:49:30 2020 -0800 @@ -68,7 +68,7 @@ """ return OrderedDict(self.items(section)) - def get(self, section, option, default=None, **kw) + def get(self, section, option, default=None, **kw): try: value = ConfigParser.get(self, section, option, **kw) except NoOptionError: