commit | 99773359843803c54574b6ee6fc1516e7fcde10f | [log] [tgz] |
---|---|---|
author | Tarek Ziadé <ziade.tarek@gmail.com> | Mon Sep 21 13:41:08 2009 +0000 |
committer | Tarek Ziadé <ziade.tarek@gmail.com> | Mon Sep 21 13:41:08 2009 +0000 |
tree | 68960c3b75d0819093d72d6e742273246a678e18 | |
parent | ccaf380fabaf09362de926a648b131114b33e90b [diff] [blame] |
#6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils.
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index afed545..f49afcc 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py
@@ -359,7 +359,7 @@ parser = ConfigParser() for filename in filenames: if DEBUG: - self.announce(" reading", filename) + self.announce(" reading %s" % filename) parser.read(filename) for section in parser.sections(): options = parser.options(section)