Skip to content

Commit

Permalink
Minor punctuation correction
Browse files Browse the repository at this point in the history
  • Loading branch information
gothub committed Mar 12, 2020
1 parent 596d48e commit b017a4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/checks/dataset.keywords.minimum.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ def call():
# If the keyword count is less than the minimum then fail
if(keywordCount < keywordMinimumCount):
status = "FAILURE"
output = "Only {} keywords are present, and {} or more keywords are required".format(keywordCount, keywordMinimumCount);
output = "Only {} keywords are present, and {} or more keywords are required.".format(keywordCount, keywordMinimumCount);
return False
else:
# Passed all tests!
status = "SUCCESS"
output = "{} keywords are present, which is sufficient".format(keywordCount);
output = "{} keywords are present, which is sufficient.".format(keywordCount);
return True
]]></code>
<selector>
Expand Down

0 comments on commit b017a4c

Please sign in to comment.