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 da376c8 commit d7647e2Copy full SHA for d7647e2
1 file changed
atwiki/core.py
@@ -37,7 +37,7 @@ def get_list(self, tag=None, _start=1):
37
if tag:
38
soup = self._request(self._uri.tag(tag, index))
39
links = soup.find('div', attrs={'class': 'cmd_tag'}).find('ul').select('a')
40
- pager = soup.find('div', attrs={'class': 'cmd_tag'}).select_one('a[href$="?&p={}"]'.format(index + 1))
+ pager = soup.find('div', attrs={'class': 'cmd_tag'}).select_one('a[href$="?p={}"]'.format(index + 1))
41
else:
42
soup = self._request(self._uri.list('create', index))
43
links = soup.find('table', attrs={'class': 'pagelist'}).findAll('a', href=True, title=True)
0 commit comments