Skip to content

Commit

Permalink
quick fix for issue #696
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekultek committed Feb 1, 2020
1 parent 1d42722 commit 84c3c39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
pass

# version number <major>.<minor>.<commit>
VERSION = "1.9.7"
VERSION = "1.9.8"

# version string
VERSION_TYPE = "($dev)" if VERSION.count(".") > 1 else "($stable)"
Expand Down Expand Up @@ -271,7 +271,7 @@ def get_page(url, **kwargs):
req = requests.get

if provided_headers is None:
headers = {"Connection": "close", "User-Agent": agent}
headers = {"Connection": "close", "User-Agent": agent, "Accept": "*"}
else:
headers = {}
if type(provided_headers) == dict:
Expand Down

0 comments on commit 84c3c39

Please sign in to comment.