do not fail on non-string missing value (#4535)

This commit is contained in:
Frédéric Péters 2014-03-24 10:53:27 +01:00 committed by Frédéric Péters
parent b2ec35c636
commit 7f7c2558b0
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ class PathSource(object):
# brain. These will get hidden in the display templates
def _placeholderTerm(self, value):
return SimpleTerm(str(value),
token='#error-missing-' + value,
token='#error-missing-' + str(value),
title=u"Hidden or missing item '%s'" % value)