From f8645e2dd3b874587dbd7f83fc581f7b97d16eef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nic=20Soud=C3=A9e?= Date: Fri, 5 May 2023 07:51:10 -0400 Subject: [PATCH] Fix typo "scaper" -> "scraper" --- resources/scrap.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/scrap.py b/resources/scrap.py index 4668288b..d49c3ab8 100644 --- a/resources/scrap.py +++ b/resources/scrap.py @@ -739,9 +739,9 @@ def _scanner_get_candidate(self, romdata, ROM_FN, ROM_checksums_FN, scraper_obj, scraper_name, st_dic): # --- Update scanner progress dialog --- if self.pdialog_verbose: - scraper_text = 'Searching games with scaper {}...'.format(scraper_name) + scraper_text = 'Searching games with scraper {}...'.format(scraper_name) self.pdialog.updateMessage(scraper_text) - log.debug('Searching games with scaper {}'.format(scraper_name)) + log.debug('Searching games with scraper {}'.format(scraper_name)) # * The scanner uses the cached ROM candidate always. # * If the candidate is empty it means it was previously searched and the scraper @@ -1309,7 +1309,7 @@ def _scrap_CM_get_candidate(self, object_name, object_dic, data_dic, st_dic): # --- Do a search and get a list of games --- pdialog = kodi.ProgressDialog() - pdialog.startProgress('Searching games with scaper {}...'.format(scraper_name)) + pdialog.startProgress('Searching games with scraper {}...'.format(scraper_name)) candidate_list = self.scraper_obj.get_candidates( search_term, ROM_FN, ROM_hash_FN, platform, st_dic) # If the there was an error/exception in the scraper return immediately.