From abeb9f4d84ba8689ff9dba72346d7b1bbded12ea Mon Sep 17 00:00:00 2001 From: Nicolas Perez Date: Wed, 12 Jun 2024 02:32:50 -0400 Subject: [PATCH] fix: `enable_playwright` url had a typo --- aider/scrape.py | 2 +- aider/urls.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/scrape.py b/aider/scrape.py index 147203c48..3b5a98a1a 100755 --- a/aider/scrape.py +++ b/aider/scrape.py @@ -21,7 +21,7 @@ For better web scraping, install Playwright chromium with this command in your t playwright install --with-deps chromium -See {urls.enable_playwrite} for more info. +See {urls.enable_playwright} for more info. """ diff --git a/aider/urls.py b/aider/urls.py index 62f95503d..5500527b5 100644 --- a/aider/urls.py +++ b/aider/urls.py @@ -2,6 +2,6 @@ website = "https://aider.chat/" add_all_files = "https://aider.chat/docs/faq.html#how-can-i-add-all-the-files-to-the-chat" edit_errors = "https://aider.chat/docs/troubleshooting/edit-errors.html" git = "https://aider.chat/docs/git.html" -enable_playwrite = "https://aider.chat/docs/install/optional.html#enable-playwright" +enable_playwright = "https://aider.chat/docs/install/optional.html#enable-playwright" favicon = "https://aider.chat/assets/icons/favicon-32x32.png" model_warnings = "https://aider.chat/docs/llms/warnings.html"