diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-11-09 05:08:07 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-11-09 05:08:07 (GMT) |
commit | 230a60c6ec4861342278fb4546ebc907baf3b23b (patch) | |
tree | 00135e543b64638036efcacdc9d5dbfde7988959 /Lib/ConfigParser.py | |
parent | b0ead4ea4a1e0f4e5dc2a00110be8038586c9e21 (diff) | |
download | cpython-230a60c6ec4861342278fb4546ebc907baf3b23b.zip cpython-230a60c6ec4861342278fb4546ebc907baf3b23b.tar.gz cpython-230a60c6ec4861342278fb4546ebc907baf3b23b.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/ConfigParser.py')
-rw-r--r-- | Lib/ConfigParser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 176f2ff..f51d134 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py @@ -525,7 +525,7 @@ class ConfigParser(RawConfigParser): def _interpolate(self, section, option, rawval, vars): # do the string interpolation value = rawval - depth = MAX_INTERPOLATION_DEPTH + depth = MAX_INTERPOLATION_DEPTH while depth: # Loop through this until it's done depth -= 1 if value.find("%(") != -1: |