Skip to content

Commit

Permalink
last version
Browse files Browse the repository at this point in the history
  • Loading branch information
Juanchobanano committed Sep 7, 2023
1 parent 87ff1bd commit a125635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion search_engines_kit/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, timeout=TIMEOUT, proxy=PROXY, username: str or None = None, p
def get(self, page):
'''Submits a HTTP GET request.'''
#print("Getting...")
page = self._quote(page)
page = self._quote(page) #
try:
req = self.session.get(page, timeout=self.timeout)
self.session.headers['Referer'] = page
Expand Down

0 comments on commit a125635

Please sign in to comment.