diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 14:57:46 +0000 |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 14:57:46 +0000 |
| commit | 46a2116c217f63b2a3059dafad7123f509fa46f8 (patch) | |
| tree | 7884b9c659de9eed26bdaeb42d276c118a267874 /command/config.py | |
| parent | c22d66c04f50a075bb19cae0a0ebcc3f8ade5a14 (diff) | |
| download | python-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.py | 15 |
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() |
