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 599c141 commit e4f58feCopy full SHA for e4f58fe
18-asyncio/charfinder/http_charfinder.py
@@ -29,7 +29,7 @@ def home(request): # <1>
29
print('Query: {!r}'.format(query)) # <3>
30
if query: # <4>
31
descriptions = list(index.find_descriptions(query))
32
- res = '\n'.join(ROW_TPL.format(**vars(descr))
+ res = '\n'.join(ROW_TPL.format(**descr._asdict())
33
for descr in descriptions)
34
msg = index.status(query, len(descriptions))
35
else:
18-asyncio/charfinder/requirements.txt
@@ -0,0 +1 @@
1
+aiohttp==0.13.1
0 commit comments