Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo "scaper" -> "scraper" #159

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions resources/scrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down