changeset 20:93c198d9bf84

syntax
author Jeff Hammel <k0scist@gmail.com>
date Tue, 24 Nov 2020 14:49:30 -0800
parents 81e0743dbe53
children 85bbb83703fa
files martini/config.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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: