From fe38e66a815997522e4ad024ed4d310b714ba06c Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Mon, 23 Aug 2021 17:09:31 -0400 Subject: [PATCH] fix spelling --- python/plugins/MetaSearch/search_backend.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/plugins/MetaSearch/search_backend.py b/python/plugins/MetaSearch/search_backend.py index bc9c6634e1c..45e6bc41e60 100644 --- a/python/plugins/MetaSearch/search_backend.py +++ b/python/plugins/MetaSearch/search_backend.py @@ -81,7 +81,7 @@ class CSW202Search(SearchBase): self.record_info_template = 'record_metadata_dc.html' self.constraints = [] - self.conn = CatalogueServiceWeb(self.url, timeout=self.timeout, + self.conn = CatalogueServiceWeb(self.url, timeout=self.timeout, # spellok username=self.username, password=self.password, auth=self.auth) @@ -161,7 +161,7 @@ class OARecSearch(SearchBase): self.base_url = None self.record_collection = None - if '/collections/' in self.url: # catalogue is a collection + if '/collections/' in self.url: # catalog is a collection self.base_url, self.record_collection = self.url.split('/collections/') # noqa self.conn = Records( self.base_url, timeout=self.timeout, auth=self.auth)