Use regular strings to allow tests to work

pull/2235/head
Daniel Hokka Zakrisson 13 years ago
parent 6c9bb35f89
commit 4807fbc8b7

@ -174,7 +174,7 @@ def _varFind(basedir, text, vars, lookup_fatal, depth, expand_lists):
try:
replacement = instance.run(args, inject=vars)
if expand_lists:
replacement = u",".join([unicode(x) for x in replacement])
replacement = ",".join([str(x) for x in replacement])
except:
if not lookup_fatal:
replacement = None

Loading…
Cancel
Save