Python 3 Start

This commit is contained in:
Luke Rogers 2014-03-06 11:45:00 +13:00
parent 9f029c8ceb
commit 141fe8d80c
67 changed files with 264 additions and 274 deletions

View file

@ -18,7 +18,7 @@ def suggest(inp):
if not suggestions:
return 'no suggestions found'
out = u", ".join(suggestions)
out = ", ".join(suggestions)
# defuckify text
soup = BeautifulSoup(out)