mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
Improved error handling in scrape.py by converting exception to string before printing.
This commit is contained in:
parent
66c24faaca
commit
d164c85426
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class Scraper:
|
|||
browser = p.chromium.launch(ignore_https_errors=not self.verify_ssl)
|
||||
except Exception as e:
|
||||
self.playwright_available = False
|
||||
self.print_error(e)
|
||||
self.print_error(str(e))
|
||||
return
|
||||
|
||||
page = browser.new_page(ignore_https_errors=not self.verify_ssl)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue