Skip to content

Commit 8b10e97

Browse files
committed
Fixed charm expansion not being parsed correctly in auctions
1 parent 4ff2410 commit 8b10e97

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ 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.5:
10+
11+
3.5.5 (2020-10-03)
12+
==================
13+
14+
- Fixed charm expansion not being parsed correctly in auctions.
15+
916
.. v3.5.4:
1017
1118
3.5.4 (2020-09-24)

tibiapy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.5.4'
1+
__version__ = '3.5.5'
22
__author__ = 'Allan Galarza'
33

44
import logging

tibiapy/bazaar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,7 @@ def _parse_general_table(self, table):
12641264
self.regular_world_transfer_available_date = parse_tibia_datetime(date_string)
12651265

12661266
charms_data = self._parse_data_table(content_containers[4])
1267-
self.charm_expansion = "yes" in charms_data.get("charms_expansion", "")
1267+
self.charm_expansion = "yes" in charms_data.get("charm_expansion", "")
12681268
self.available_charm_points = parse_integer(charms_data.get("available_charm_points"))
12691269
self.spent_charm_points = parse_integer(charms_data.get("spent_charm_points"))
12701270

0 commit comments

Comments
 (0)