Skip to content

Commit c4cea16

Browse files
committed
fix blanks, update docs
1 parent ab05d2a commit c4cea16

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Adding an output metadata schemas to pygeometa involves extending
123123
`pygeometa.schemas.base.BaseOutputSchema` and supporting the `write`
124124
function to return a string of exported metadata content. If you are using
125125
Jinja2 templates, see the next section. If you are using another means of
126-
generating metadata (lxml, xml.etree, json, etc.), override the ABS `write`
126+
generating metadata (lxml, xml.etree, json, etc.), override the ABC `write`
127127
class to emit a string using your tooling/workflow accordingly. See the
128128
below sections for examples.
129129

docs/content/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Adding an output metadata schemas to pygeometa involves extending
136136
`pygeometa.schemas.base.BaseOutputSchema` and supporting the `write`
137137
function to return a string of exported metadata content. If you are using
138138
Jinja2 templates, see the next section. If you are using another means of
139-
generating metadata (lxml, xml.etree, json, etc.), override the ABS `write`
139+
generating metadata (lxml, xml.etree, json, etc.), override the ABC `write`
140140
class to emit a string using your tooling/workflow accordingly. See the
141141
below sections for examples.
142142

pygeometa/schemas/iso19139/main.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
{% endfor %}
240240
<gmd:resourceConstraints>
241241
<gmd:MD_LegalConstraints>
242-
{{ cs.get_freetext('useLimitation', record.get('metadata',{}).get('language_alternate'), get_charstring(record['identification'].get('rights'), record.get('metadata',{}).get('language'), record.get('metadata',{}).get('language_alternate'))) }}
242+
{{ cs.get_freetext('useLimitation', record.get('metadata',{}).get('language_alternate'), get_charstring(record['identification'].get('rights'), record.get('metadata',{}).get('language'), record.get('metadata',{}).get('language_alternate'))) }}
243243
<gmd:accessConstraints>
244244
<gmd:MD_RestrictionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode" codeSpace="ISOTC211/19115" codeListValue="{{ record['identification']['accessconstraints'] }}">{{ record['identification']['accessconstraints'] }}</gmd:MD_RestrictionCode>
245245
</gmd:accessConstraints>

0 commit comments

Comments
 (0)