Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Sep 16, 2023
1 parent e4bf829 commit 48e45f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pycsw/opensearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ def _csw2_2_os(self):
}

node1.set('template', '%s%s' % (self.bind_url,
'&'.join(f'{k}={v}') for k, v in kvps.items())))

'&'.join([f'{k}={v}' for k, v in kvps.items()]))
)

#node1.set('template', '%smode=opensearch&service=CSW&version=2.0.2&request=GetRecords&elementsetname=full&typenames=csw:Record&resulttype=results&q={searchTerms?}&bbox={geo:box?}&time={time:start?}/{time:end?}&start={time:start?}&stop={time:end?}&startposition={startIndex?}&maxrecords={count?}' % self.bind_url)

Expand Down

0 comments on commit 48e45f5

Please sign in to comment.