Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcalm/hint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/hint.py b/calm/hint.py
index ead719e..b3e9a70 100755
--- a/calm/hint.py
+++ b/calm/hint.py
@@ -306,7 +306,7 @@ def hint_file_parse(fn, kind, strict=False):
if not le.normalized_expression:
warnings.append('errors in license expression: %s' % (le.errors))
elif le.original_expression != le.normalized_expression:
- errors.append("license expression: '%s' normalizes to '%s'" % (value, le.normalized_expression))
+ warnings.append("license expression: '%s' normalizes to '%s'" % (value, le.normalized_expression))
# warn if value starts with a quote followed by whitespace
if re.match(r'^"[ \t]+', value):