diff options
author | Just van Rossum <just@letterror.com> | 2003-02-25 21:08:12 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2003-02-25 21:08:12 (GMT) |
commit | 49833313855e1c7aec9c6654e81c416329298a49 (patch) | |
tree | 5b6d1b5a65fc58a04764f148ff5437c9d56d0862 | |
parent | 7215e08846847c24af91d6e41359d2c9f480dfd1 (diff) | |
download | cpython-49833313855e1c7aec9c6654e81c416329298a49.zip cpython-49833313855e1c7aec9c6654e81c416329298a49.tar.gz cpython-49833313855e1c7aec9c6654e81c416329298a49.tar.bz2 |
tweak error message
-rwxr-xr-x | Lib/plat-mac/bundlebuilder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py index 09953e3..3d4f3c9 100755 --- a/Lib/plat-mac/bundlebuilder.py +++ b/Lib/plat-mac/bundlebuilder.py @@ -753,8 +753,8 @@ def main(builder=None): elif opt in ('-f', '--file'): srcdst = arg.split(':') if len(srcdst) != 2: - usage("-f or --file argument must be an absolute path and " - "a relative path, separated by a colon") + usage("-f or --file argument must be two paths, " + "separated by a colon") builder.files.append(srcdst) elif opt in ('-e', '--executable'): builder.executable = arg |