From d6345d42bf03e9abe0118ec6bca80bf1526d901d Mon Sep 17 00:00:00 2001 From: miztch Date: Thu, 8 Jun 2023 14:29:12 +0900 Subject: [PATCH] fix attribute name --- functions/sasha/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/sasha/index.py b/functions/sasha/index.py index 16850bb..e3cb7c8 100644 --- a/functions/sasha/index.py +++ b/functions/sasha/index.py @@ -166,7 +166,7 @@ def scrape_matches(page: str = 1): 'bestOf': match_detail['best_of'], 'matchName': match_detail['match_name'], 'teams': [{'title': team} for team in match_detail['teams']], - 'match_page': match_url_path + 'pagePath': match_url_path } logger.info('add match to the list: {}'.format(item)) matches.append(item)