From: Jack Jansen Date: Tue, 29 Apr 2003 21:46:31 +0000 (+0000) Subject: By default be verbose. X-Git-Tag: v2.3c1~929 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6abf5d8c75103eb22e06b6c16a79fece9fc1295;p=python By default be verbose. --- diff --git a/Mac/scripts/genallsuites.py b/Mac/scripts/genallsuites.py index 602f3c5307..cdd9ee8975 100644 --- a/Mac/scripts/genallsuites.py +++ b/Mac/scripts/genallsuites.py @@ -7,6 +7,8 @@ import sys import os import gensuitemodule +verbose=sys.stdout + DSTDIR="/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages" OS9DISK="/Volumes/Moes" @@ -22,29 +24,29 @@ TERMINAL="/Applications/Utilities/Terminal.app" gensuitemodule.processfile_fromresource(APPLESCRIPT, output=os.path.join(DSTDIR, 'StdSuites'), basepkgname='_builtinSuites', - edit_modnames=[]) + edit_modnames=[], verbose=verbose) gensuitemodule.processfile(SYSTEMEVENTS, output=os.path.join(DSTDIR, 'SystemEvents'), basepkgname='StdSuites', - edit_modnames=[]) + edit_modnames=[], verbose=verbose) gensuitemodule.processfile(CODEWARRIOR, output=os.path.join(DSTDIR, 'CodeWarrior'), basepkgname='StdSuites', - edit_modnames=[]) + edit_modnames=[], verbose=verbose) gensuitemodule.processfile(EXPLORER, output=os.path.join(DSTDIR, 'Explorer'), basepkgname='StdSuites', - edit_modnames=[]) + edit_modnames=[], verbose=verbose) gensuitemodule.processfile(FINDER, output=os.path.join(DSTDIR, 'Finder'), basepkgname='StdSuites', - edit_modnames=[]) + edit_modnames=[], verbose=verbose) gensuitemodule.processfile(NETSCAPE, output=os.path.join(DSTDIR, 'Netscape'), basepkgname='StdSuites', - edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')]) + edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')], verbose=verbose) gensuitemodule.processfile(TERMINAL, output=os.path.join(DSTDIR, 'Terminal'), basepkgname='StdSuites', - edit_modnames=[]) + edit_modnames=[], verbose=verbose) \ No newline at end of file