From: Jack Jansen Date: Thu, 22 Aug 2002 23:36:11 +0000 (+0000) Subject: For MacPython-OS9 verbose is the default. X-Git-Tag: v2.3c1~4331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5fd945895e3fba0e5eaa33ddc79fc3f2cb749a65;p=python For MacPython-OS9 verbose is the default. --- diff --git a/Mac/scripts/BuildApplet.py b/Mac/scripts/BuildApplet.py index 06798258c3..5e0bc27a3c 100644 --- a/Mac/scripts/BuildApplet.py +++ b/Mac/scripts/BuildApplet.py @@ -81,6 +81,9 @@ def buildapplet(): verbose = Verbose() elif opt in ('-?', '--help'): usage() + # On OS9 always be verbose + if sys.platform == 'mac' and not verbose: + verbose = 'default' # Loop over all files to be processed for filename in args: cr, tp = MacOS.GetCreatorAndType(filename)