Skip to content

Commit

Permalink
Fix issue with PR merge and get ready for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nv7-GitHub committed Aug 3, 2024
1 parent cd6b956 commit 9a617bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion googlesearch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def search(term, num_results=10, lang="en", proxy=None, advanced=False, sleep_in

while fetched_results < num_results:
# Send request
resp = _req(escaped_term, num_results - start,
resp = _req(term, num_results - start,
lang, start, proxies, timeout, safe, ssl_verify, region)

# Parse
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="googlesearch-python",
version="1.2.4",
version="1.2.5",
author="Nishant Vikramaditya",
author_email="[email protected]",
description="A Python library for scraping the Google search engine.",
Expand Down

0 comments on commit 9a617bc

Please sign in to comment.