Skip to content

Commit 884cc9c

Browse files
committed
Fixed incorrect highscores URL
1 parent 6ae8185 commit 884cc9c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ 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+
.. _v2.3.2:
10+
11+
2.3.2 (2019-10-17)
12+
==================
13+
- Fixed incorrect highscores URL.
14+
915
.. _v2.3.1:
1016

1117
2.3.1 (2019-10-06)

tibiapy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from tibiapy.creature import *
1414
from tibiapy.client import *
1515

16-
__version__ = '2.3.1'
16+
__version__ = '2.3.2'
1717

1818
from logging import NullHandler
1919

tibiapy/highscores.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
results_pattern = re.compile(r'Results: (\d+)')
1818

19-
HIGHSCORES_URL = "https://wwww.tibia.com/community/?subtopic=highscores&world=%s&list=%s&profession=%d&currentpage=%d"
19+
HIGHSCORES_URL = "https://www.tibia.com/community/?subtopic=highscores&world=%s&list=%s&profession=%d&currentpage=%d"
2020
HIGHSCORES_URL_TIBIADATA = "https://api.tibiadata.com/v2/highscores/%s/%s/%s.json"
2121

2222

0 commit comments

Comments
 (0)