From fa608186b45918f8469cb72a53c016e9d88be821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Langa?= Date: Wed, 24 Apr 2013 01:25:18 +0200 Subject: fix character index in ExtendedInterpolation's exception message --- Lib/configparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/configparser.py b/Lib/configparser.py index c7bee6b..6c5aa49 100644 --- a/Lib/configparser.py +++ b/Lib/configparser.py @@ -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, -- cgit v0.12