We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3431f66 commit d219aacCopy full SHA for d219aac
1 file changed
atwiki/core.py
@@ -61,7 +61,7 @@ def get_tags(self):
61
while True:
62
count = 0
63
soup = self._request(self._uri.tag('', index))
64
- links = soup.find('div', attrs={'class': 'cmd_tag'}).select('a.tag')
+ links = soup.find('div', attrs={'class': 'cmd_tag'}).findAll('a', attrs={'class': 'tag'})
65
for link in links:
66
tag_name = link.text
67
tag_weight = 0
0 commit comments