fix character index in ExtendedInterpolation's exception message

This commit is contained in:
Łukasz Langa 2013-04-24 01:25:18 +02:00
parent 326edfde56
commit fa608186b4
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ class ExtendedInterpolation(Interpolation):
tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax
if '$' in tmp_value:
raise ValueError("invalid interpolation syntax in %r at "
"position %d" % (value, tmp_value.find('%')))
"position %d" % (value, tmp_value.find('$')))
return value
def _interpolate_some(self, parser, option, accum, rest, section, map,