Incorrect call of Person.text

Issue #22 duplicate
Former user created an issue

The formatting engine seems to have a bug in the function names() in template.py;

return join(**kwargs) [[person.text for person in persons]].format_data(data)

But Person objects have no attribute .text

Seems to work if changed to:

return join(**kwargs) [[unicode(person) for person in persons]].format_data(data)

Comments (2)

  1. Log in to comment