Add a space after the comma when displaying a tag list

svn: r15927
This commit is contained in:
Nick Hall
2010-09-24 20:12:18 +00:00
parent 3812d647e3
commit dc050cd356
2 changed files with 2 additions and 2 deletions

View File

@@ -461,7 +461,7 @@ class PeopleBaseModel(object):
Return the sorted list of tags.
"""
tag_list = map(self.get_tag_name, data[COLUMN_TAGS])
return ','.join(sorted(tag_list, key=locale.strxfrm))
return ', '.join(sorted(tag_list, key=locale.strxfrm))
class PersonListModel(PeopleBaseModel, FlatBaseModel):
"""