diff options
author | Guido van Rossum <guido@python.org> | 1992-12-24 11:38:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-12-24 11:38:29 (GMT) |
commit | 42e9be455952cc4fd69f8f7143cd363b58ef6b9b (patch) | |
tree | b0b7441228a86b2d28ee9930bafe774b4539c485 /Demo | |
parent | 5b407618560f1da1a4ff7ee4a9e1de4b7498fb9d (diff) | |
download | cpython-42e9be455952cc4fd69f8f7143cd363b58ef6b9b.zip cpython-42e9be455952cc4fd69f8f7143cd363b58ef6b9b.tar.gz cpython-42e9be455952cc4fd69f8f7143cd363b58ef6b9b.tar.bz2 |
Fix typo in print message
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/sgi/video/Vplay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/video/Vplay.py b/Demo/sgi/video/Vplay.py index 4a51c6e..4f85eef 100755 --- a/Demo/sgi/video/Vplay.py +++ b/Demo/sgi/video/Vplay.py @@ -98,7 +98,7 @@ def main(): if opt == '-y': yoff = string.atoi(arg) except string.atoi_error: sys.stdout = sys.stderr - print 'Option', opt, 'require integer argument' + print 'Option', opt, 'requires integer argument' sys.exit(2) # Check validity of certain options combinations |