mintchaos / typogrify

A set of Django template filters to make caring about typography on the web a bit easier.
http://static.mintchaos.com/projects/typogrify/
Other
168 stars 29 forks source link

Fix addition of filtered tags in Python 3 #37

Closed jturner314 closed 10 years ago

jturner314 commented 10 years ago

Before, the results of two filter() calls were being added together with the + operator. In Python 3, the filter() built-in function returns an iterator, not a list, so this didn't work. This commit wraps the filter() calls in list() to convert the results to lists before adding them together.

jturner314 commented 10 years ago

I just noticed PR #36, which fixes this issue more cleanly than my PR. I'm closing this one.