From 93e916eb39776063e0e4c821e24aafe997a1850e Mon Sep 17 00:00:00 2001 From: "Dr. Peter Poeml" Date: Thu, 7 Aug 2008 17:51:28 +0000 Subject: [PATCH] remove empty parens after class definition so Python 2.4.2 can parse it --- osc/OscConfigParser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osc/OscConfigParser.py b/osc/OscConfigParser.py index 9749f6aa..e26157c3 100644 --- a/osc/OscConfigParser.py +++ b/osc/OscConfigParser.py @@ -4,7 +4,7 @@ import re # inspired from http://code.google.com/p/iniparse/ - although their implementation is # quite different -class ConfigLineOrder(): +class ConfigLineOrder: """ A ConfigLineOrder() instance task is to preserve the order of a config file. It keeps track of all lines (including comments) in the _lines list. This list @@ -67,7 +67,7 @@ class ConfigLineOrder(): yield line.name raise StopIteration() -class Line(): +class Line: """Base class for all line objects""" def __init__(self, name, type): self.name = name