summaryrefslogtreecommitdiff
path: root/command/config.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-12 14:57:46 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-12 14:57:46 +0000
commit46a2116c217f63b2a3059dafad7123f509fa46f8 (patch)
tree7884b9c659de9eed26bdaeb42d276c118a267874 /command/config.py
parentc22d66c04f50a075bb19cae0a0ebcc3f8ade5a14 (diff)
downloadpython-setuptools-git-46a2116c217f63b2a3059dafad7123f509fa46f8.tar.gz
Merged revisions 71509 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71509 | tarek.ziade | 2009-04-12 16:53:51 +0200 (Sun, 12 Apr 2009) | 1 line removed the print statements and added a test ........
Diffstat (limited to 'command/config.py')
-rw-r--r--command/config.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/command/config.py b/command/config.py
index 34f91884..144c5132 100644
--- a/command/config.py
+++ b/command/config.py
@@ -336,11 +336,16 @@ class config(Command):
def dump_file(filename, head=None):
+ """Dumps a file content into log.info.
+
+ If head is not None, will be dumped before the file content.
+ """
if head is None:
- print(filename + ":")
+ log.info('%s' % filename)
else:
- print(head)
-
+ log.info(head)
file = open(filename)
- sys.stdout.write(file.read())
- file.close()
+ try:
+ log.info(file.read())
+ finally:
+ file.close()