summaryrefslogtreecommitdiff
path: root/command/config.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-02-09 05:37:30 +0000
committerGuido van Rossum <guido@python.org>2007-02-09 05:37:30 +0000
commit4e0a58cc6113aa5ab73196de13b16d500ff46fe6 (patch)
tree3b36090ceef08966144c1efd1233869774678314 /command/config.py
parentba04afa355a9b33a8dc4e52e11de3b11cae13afd (diff)
downloadpython-setuptools-git-4e0a58cc6113aa5ab73196de13b16d500ff46fe6.tar.gz
Fix most trivially-findable print statements.
There's one major and one minor category still unfixed: doctests are the major category (and I hope to be able to augment the refactoring tool to refactor bona fide doctests soon); other code generating print statements in strings is the minor category. (Oh, and I don't know if the compiler package works.)
Diffstat (limited to 'command/config.py')
-rw-r--r--command/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/command/config.py b/command/config.py
index 520c1b0c..42465693 100644
--- a/command/config.py
+++ b/command/config.py
@@ -359,9 +359,9 @@ class config (Command):
def dump_file (filename, head=None):
if head is None:
- print filename + ":"
+ print(filename + ":")
else:
- print head
+ print(head)
file = open(filename)
sys.stdout.write(file.read())