csv_metadata_quality/app.py: Update help text
continuous-integration/drone/push Build is passing Details

Use DCTERMS fields where possible.
This commit is contained in:
Alan Orth 2021-03-14 10:52:58 +02:00
parent fb35afd937
commit c9c277f8df
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ def parse_args(argv):
parser.add_argument( parser.add_argument(
"--agrovoc-fields", "--agrovoc-fields",
"-a", "-a",
help="Comma-separated list of fields to validate against AGROVOC, for example: dc.subject,cg.coverage.country", help="Comma-separated list of fields to validate against AGROVOC, for example: dcterms.subject,cg.coverage.country",
) )
parser.add_argument( parser.add_argument(
"--experimental-checks", "--experimental-checks",
@ -48,7 +48,7 @@ def parse_args(argv):
parser.add_argument( parser.add_argument(
"--exclude-fields", "--exclude-fields",
"-x", "-x",
help="Comma-separated list of fields to skip, for example: dc.contributor.author,dc.identifier.citation", help="Comma-separated list of fields to skip, for example: dc.contributor.author,dcterms.bibliographicCitation",
) )
args = parser.parse_args() args = parser.parse_args()