Skip to content

Commit

Permalink
Update duckduckgo_search.py
Browse files Browse the repository at this point in the history
Bugfix f-string fo python 3.7
  • Loading branch information
deedy5 authored May 17, 2023
1 parent b8856aa commit 115dbea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion duckduckgo_search/duckduckgo_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _get_url(self, method, url, **kwargs):
resp.raise_for_status()
return resp
except Exception as ex:
logger.debug(f"_get_url() {url=} {type(ex).__name__}")
logger.debug(f"_get_url() url={url} {type(ex).__name__}")
sleep(0.25)

def _resp_to_json(self, resp):
Expand Down

0 comments on commit 115dbea

Please sign in to comment.