summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Lint/Comments.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Lint/Comments.py')
-rw-r--r--src/lib/Server/Lint/Comments.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Lint/Comments.py b/src/lib/Server/Lint/Comments.py
index 587f20603..8c83545b3 100644
--- a/src/lib/Server/Lint/Comments.py
+++ b/src/lib/Server/Lint/Comments.py
@@ -143,8 +143,8 @@ class Comments(Bcfg2.Server.Lint.ServerPlugin):
unexpanded = [keyword for (keyword, status) in found.items()
if status is None]
if unexpanded:
- self.LintError("%s: Required keywords(s) found but not expanded: %s" %
- (filename, ", ".join(unexpanded)))
+ self.LintWarning("%s: Required keywords(s) found but not expanded: %s" %
+ (filename, ", ".join(unexpanded)))
missing = [keyword for (keyword, status) in found.items()
if status is False]
if missing: