fix character index in ExtendedInterpolation's exception message
This commit is contained in:
parent
326edfde56
commit
fa608186b4
|
@ -456,7 +456,7 @@ class ExtendedInterpolation(Interpolation):
|
||||||
tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax
|
tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax
|
||||||
if '$' in tmp_value:
|
if '$' in tmp_value:
|
||||||
raise ValueError("invalid interpolation syntax in %r at "
|
raise ValueError("invalid interpolation syntax in %r at "
|
||||||
"position %d" % (value, tmp_value.find('%')))
|
"position %d" % (value, tmp_value.find('$')))
|
||||||
return value
|
return value
|
||||||
|
|
||||||
def _interpolate_some(self, parser, option, accum, rest, section, map,
|
def _interpolate_some(self, parser, option, accum, rest, section, map,
|
||||||
|
|
Loading…
Reference in New Issue