File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ Changelog
66 Due to this library relying on external content, older versions are not guaranteed to work.
77 Try to always use the latest version.
88
9+ .. v3.5.1:
10+
11+ 3.5.1 (2020-09-22)
12+ ==================
13+
14+ - Fixed bug with recently traded characters in "other characters" section not being properly parsed.
15+
16+ .. v3.5.0:
17+
918 3.5.0 (2020-09-22)
1019==================
1120
@@ -15,12 +24,16 @@ Changelog
1524 Property alias kept for backwards compatibility.
1625 - Added new attribute ``AuctionFilters.search_type ``
1726
27+ .. v3.4.0:
28+
1829 3.4.0 (2020-09-19)
1930==================
2031
2132- Added option to only parse the listed information of an auction, to skip the rest of the parsing.
2233- Fixed wrong type hint in ``ListedAuction `` for ``status ``.
2334
35+ .. v3.3.0:
36+
2437 3.3.0 (2020-09-09)
2538==================
2639
Original file line number Diff line number Diff line change 1- __version__ = '3.5.0 '
1+ __version__ = '3.5.1 '
22__author__ = 'Allan Galarza'
33
44import logging
Original file line number Diff line number Diff line change @@ -567,8 +567,8 @@ def _parse_other_characters(self, rows):
567567 _ , * name = name .replace ("\xa0 " , " " ).split (" " )
568568 name = " " .join (name )
569569 traded = False
570- if "(recently traded)" in name :
571- name = name .replace ("(recently traded)" , "" ).strip ()
570+ if "(traded)" in name :
571+ name = name .replace ("(traded)" , "" ).strip ()
572572 traded = True
573573 main_img = cols_raw [0 ].find ('img' )
574574 main = False
You can’t perform that action at this time.
0 commit comments