Whitespace normalization.

This commit is contained in:
Tim Peters 2002-11-09 05:08:07 +00:00
parent b0ead4ea4a
commit 230a60c6ec
7 changed files with 27 additions and 28 deletions

View file

@ -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: