diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2011-05-20 09:12:59 -0400 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2011-06-14 12:36:46 -0500 |
commit | 37c5d256bda2ffe037680c9d5bfc5d986a58f7ef (patch) | |
tree | 3b0ed747c0c02867398f8873b9606347dc667645 /src | |
parent | 8168776fb50858a0e531c3a874ee1e20a88e7690 (diff) | |
download | bcfg2-37c5d256bda2ffe037680c9d5bfc5d986a58f7ef.tar.gz bcfg2-37c5d256bda2ffe037680c9d5bfc5d986a58f7ef.tar.bz2 bcfg2-37c5d256bda2ffe037680c9d5bfc5d986a58f7ef.zip |
removed debugging output from Validate plugin
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/Server/Lint/Validate.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/Server/Lint/Validate.py b/src/lib/Server/Lint/Validate.py index c0a400dd6..c9b5688e1 100644 --- a/src/lib/Server/Lint/Validate.py +++ b/src/lib/Server/Lint/Validate.py @@ -42,8 +42,6 @@ class Validate(Bcfg2.Server.Lint.ServerlessPlugin): except KeyError: filelist = [] - print "validating %s" % path - print "filelist = %s" % filelist if filelist: # avoid loading schemas for empty file lists try: @@ -135,7 +133,6 @@ class Validate(Bcfg2.Server.Lint.ServerlessPlugin): for f in files if f == 'info.xml']) else: - print "globbing for %s" % (path % self.config['repo']) self.filelists[path] = listfiles(path) self.filelists['props'] = listfiles("%s/Properties/*.xml") |