summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCasey Dahlin <cdahlin@redhat.com>2009-01-19 23:37:44 -0500
committerCasey Dahlin <cdahlin@redhat.com>2009-01-19 23:37:44 -0500
commit0ad1517d034d7f4124ef5527646965c87b6b23bf (patch)
tree818eff3ddc9df215fe6599ad8d035b00d41885ed
parentc18883426fe40456de3b14a56a52c7b554282d7b (diff)
downloadupstate-0ad1517d034d7f4124ef5527646965c87b6b23bf.tar.gz
upstate-0ad1517d034d7f4124ef5527646965c87b6b23bf.tar.xz
upstate-0ad1517d034d7f4124ef5527646965c87b6b23bf.zip
Rename Conf.propspecs to Conf.propmatches
-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):
"""