We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a85c6 commit 8749171Copy full SHA for 8749171
pycsw/ogc/csw/csw2.py
@@ -933,8 +933,8 @@ def getrecords(self):
933
934
searchresults = etree.SubElement(node,
935
util.nspath_eval('csw:SearchResults', self.parent.context.namespaces),
936
- numberOfRecordsMatched=matched, numberOfRecordsReturned=returned,
937
- nextRecord=nextrecord, recordSchema=self.parent.kvp['outputschema'])
+ numberOfRecordsMatched=str(matched), numberOfRecordsReturned=str(returned),
+ nextRecord=str(nextrecord), recordSchema=self.parent.kvp['outputschema'])
938
939
if self.parent.kvp['elementsetname'] is not None:
940
searchresults.attrib['elementSet'] = self.parent.kvp['elementsetname']
0 commit comments