Issue #181, when parse tags

This commit is contained in:
Christophe Chauvet 2011-11-06 13:16:47 +01:00
commit 2911a38f40

View file

@ -19,7 +19,7 @@ from pelican.utils import get_date, open
_METADATA_PROCESSORS = {
'tags': lambda x: map(unicode.strip, x.split(',')),
'tags': lambda x: map(unicode.strip, unicode(x).split(',')),
'date': lambda x: get_date(x),
'status': unicode.strip,
}