Skip to content

Commit

Permalink
fixing unicode error when formatting title
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Balogh committed Jul 23, 2010
1 parent c365ee9 commit 13fc4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/versions/feeds.py
Expand Up @@ -48,7 +48,7 @@ def item_link(self, version):
def item_title(self, version):
"""Title for particular version (<item><title>)"""
# L10n: This is the Title for this Version of the Addon
return '{name} {version} - {created}'.format(
return u'{name} {version} - {created}'.format(
name=self.addon.name, version=version.version,
created=datetime(version.created))

Expand Down

0 comments on commit 13fc4a7

Please sign in to comment.