File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ Changelog
6
6
Due to this library relying on external content, older versions are not guaranteed to work.
7
7
Try to always use the latest version.
8
8
9
+ .. v3.6.5:
10
+
11
+ 3.6.5 (2021-01-27)
12
+ ==================
13
+
14
+ - Fixed auction history parsing breaking due to the cookie consent dialog.
15
+
9
16
.. v3.6.4:
10
17
11
18
3.6.4 (2021-01-26)
Original file line number Diff line number Diff line change @@ -389,7 +389,8 @@ def from_content(cls, content):
389
389
"""
390
390
try :
391
391
parsed_content = parse_tibiacom_content (content , builder = 'html5lib' )
392
- tables = parsed_content .find_all ("div" , attrs = {"class" : "TableContainer" })
392
+ content_table = parsed_content .find ("div" , attrs = {"class" : "BoxContent" })
393
+ tables = content_table .find_all ("div" , attrs = {"class" : "TableContainer" })
393
394
filter_table = None
394
395
if len (tables ) == 1 :
395
396
auctions_table = tables [0 ]
You can’t perform that action at this time.
0 commit comments