From 0ad1517d034d7f4124ef5527646965c87b6b23bf Mon Sep 17 00:00:00 2001 From: Casey Dahlin Date: Mon, 19 Jan 2009 23:37:44 -0500 Subject: Rename Conf.propspecs to Conf.propmatches --- confparse.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/confparse.py b/confparse.py index d141ae1..14a2eaa 100644 --- a/confparse.py +++ b/confparse.py @@ -309,15 +309,15 @@ class Conf(ParseTreeNode): """ toks = TokenList(string) toks.close() - self.propspecs = [] + self.propmatches = [] while len(toks) > 0: - self.propspecs.append(PropMatch(toks)) + self.propmatches.append(PropMatch(toks)) def children(self): """ List of child nodes of this parse tree node """ - return self.propspecs + return self.propmatches def __repr__(self): """ -- cgit