From ce1d944b6b3c51bfb6505652c678aaef99c36d50 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Mon, 30 Dec 2002 23:38:47 +0000 Subject: [PATCH] Add missing InterpolationSyntaxError. XXX Not sure this is correct. --- Lib/ConfigParser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 845886b7a1d..a48d54bb91d 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py @@ -139,6 +139,8 @@ class InterpolationError(Error): self.option = option self.section = section +class InterpolationSyntaxError(Error): pass + class InterpolationDepthError(Error): def __init__(self, option, section, rawval): Error.__init__(self,