diff options
author | Just van Rossum <just@letterror.com> | 2002-11-28 18:56:50 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2002-11-28 18:56:50 (GMT) |
commit | ad692ccde15fbf55ba60457592fbdf3073cf3c0b (patch) | |
tree | e1107bc70b63c5ea9e4798d9175c2b17997f4a21 | |
parent | 74bdca8a207af74796b7e4a117886be92818f6cb (diff) | |
download | cpython-ad692ccde15fbf55ba60457592fbdf3073cf3c0b.zip cpython-ad692ccde15fbf55ba60457592fbdf3073cf3c0b.tar.gz cpython-ad692ccde15fbf55ba60457592fbdf3073cf3c0b.tar.bz2 |
fixed typo and wrapping
-rwxr-xr-x | Mac/Lib/bundlebuilder.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Lib/bundlebuilder.py b/Mac/Lib/bundlebuilder.py index 0bef268..7d58268 100755 --- a/Mac/Lib/bundlebuilder.py +++ b/Mac/Lib/bundlebuilder.py @@ -491,7 +491,8 @@ class AppBuilder(BundleBuilder): self.message("Warning: couldn't find the following submodules:", 1) self.message(" (Note that these could be false alarms -- " "it's not always", 1) - self.message(" possible to distinguish between from \"package import submodule\" ", 1) + self.message(" possible to distinguish between \"from package " + "import submodule\" ", 1) self.message(" and \"from package import name\")", 1) for name in maybe: self.message(" ? " + name, 1) |