diff options
Diffstat (limited to 'src/lib/Bcfg2/Server/Lint')
-rwxr-xr-x | src/lib/Bcfg2/Server/Lint/Jinja2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Lint/Jinja2.py b/src/lib/Bcfg2/Server/Lint/Jinja2.py index e508e5eae..333249cc2 100755 --- a/src/lib/Bcfg2/Server/Lint/Jinja2.py +++ b/src/lib/Bcfg2/Server/Lint/Jinja2.py @@ -19,7 +19,7 @@ class Jinja2(Bcfg2.Server.Lint.ServerPlugin): "unknown-jinja2-error": "error"} def check_template(self, entry): - """ Generic check for all jinja2 templates (XML and text) """ + """ Generic check for all jinja2 templates """ try: Template(entry.data.decode(entry.encoding)) except TemplateSyntaxError: |