diff options
author | Just van Rossum <just@lettererror.com> | 1999-11-04 10:30:13 (GMT) |
---|---|---|
committer | Just van Rossum <just@lettererror.com> | 1999-11-04 10:30:13 (GMT) |
commit | 29e51844917ec3487e1d1b4a5d0de6a3b8acad6d (patch) | |
tree | dc9d40c18213c410eea8db545a409c26f049f1a7 /Mac/scripts/BuildApplication.py | |
parent | 2e5b0f2166cb0b8a8d2152af8fa3817d0d2f66cf (diff) | |
download | cpython-29e51844917ec3487e1d1b4a5d0de6a3b8acad6d.zip cpython-29e51844917ec3487e1d1b4a5d0de6a3b8acad6d.tar.gz cpython-29e51844917ec3487e1d1b4a5d0de6a3b8acad6d.tar.bz2 |
Typo fixed in docstring; removed unneccesary import. (jvr)
Diffstat (limited to 'Mac/scripts/BuildApplication.py')
-rw-r--r-- | Mac/scripts/BuildApplication.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Mac/scripts/BuildApplication.py b/Mac/scripts/BuildApplication.py index 58499f6..33035fe 100644 --- a/Mac/scripts/BuildApplication.py +++ b/Mac/scripts/BuildApplication.py @@ -4,7 +4,7 @@ This puts up a dialog asking for a Python source file ('TEXT'). The output is a file with the same name but its ".py" suffix dropped. It is created by copying an applet template, all used shared libs and then adding 'PYC ' resources containing compiled versions of all used -modules wirrten in Python and the main script itself, as __main__. +modules written in Python and the main script itself, as __main__. """ @@ -24,7 +24,6 @@ MACFREEZEPATH = os.path.join(sys.prefix, ":Mac:Tools:macfreeze") if MACFREEZEPATH not in sys.path: sys.path.append(MACFREEZEPATH) -import macmodulefinder import macgen_bin # dialog, items |