summaryrefslogtreecommitdiffstats
path: root/confparse.py
diff options
context:
space:
mode:
Diffstat (limited to 'confparse.py')
-rw-r--r--confparse.py6
1 files 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):
"""