summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Lint
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-03-28 17:18:58 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-03-28 17:18:58 -0400
commit4d29fe21b69795505ce27bccbdb59566bc20d7b5 (patch)
treed8bedc271649a6c0918132b76c553b6bdff79a26 /src/lib/Bcfg2/Server/Lint
parent76f996d12103f446b785fd727480d12b2c6a6b91 (diff)
downloadbcfg2-4d29fe21b69795505ce27bccbdb59566bc20d7b5.tar.gz
bcfg2-4d29fe21b69795505ce27bccbdb59566bc20d7b5.tar.bz2
bcfg2-4d29fe21b69795505ce27bccbdb59566bc20d7b5.zip
GroupLogic: added docstrings
Diffstat (limited to 'src/lib/Bcfg2/Server/Lint')
-rw-r--r--src/lib/Bcfg2/Server/Lint/Validate.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Server/Lint/Validate.py b/src/lib/Bcfg2/Server/Lint/Validate.py
index 14d17a1e6..ae7c75804 100644
--- a/src/lib/Bcfg2/Server/Lint/Validate.py
+++ b/src/lib/Bcfg2/Server/Lint/Validate.py
@@ -88,6 +88,9 @@ class Validate(Bcfg2.Server.Lint.ServerlessPlugin):
self.parse(filename)
def parse(self, filename):
+ """ Parse an XML file, raising the appropriate LintErrors if
+ it can't be parsed or read. Return the
+ lxml.etree._ElementTree parsed from the file. """
try:
return lxml.etree.parse(filename)
except SyntaxError: