diff options
author | Guido van Rossum <guido@python.org> | 1994-01-07 10:55:55 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-01-07 10:55:55 (GMT) |
commit | 032d39461bf344ae731b7dab6101bbf6bcdcb249 (patch) | |
tree | d29ef118ded74d1a3ef6ab1b713120f9ea195b08 | |
parent | f62f68745374579e615c348d2f592dfb90eec947 (diff) | |
download | cpython-032d39461bf344ae731b7dab6101bbf6bcdcb249.zip cpython-032d39461bf344ae731b7dab6101bbf6bcdcb249.tar.gz cpython-032d39461bf344ae731b7dab6101bbf6bcdcb249.tar.bz2 |
Minor output format change
-rwxr-xr-x | Demo/scripts/freeze.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Demo/scripts/freeze.py b/Demo/scripts/freeze.py index c17c33f..85ab5bc 100755 --- a/Demo/scripts/freeze.py +++ b/Demo/scripts/freeze.py @@ -308,7 +308,8 @@ def process(filename, addmodules): else: print 'Done.' # - if not quiet: print 'Note: consider this:'; print 'strip', ofile + if not quiet and not noexec and sts == 0: + print 'Note: consider this:'; print '\tstrip', ofile # sys.exit(sts) |