diff options
author | Guido van Rossum <guido@python.org> | 1994-02-07 13:46:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-02-07 13:46:11 (GMT) |
commit | 44fa566927987328e0d818071d7b2b7f473df1cd (patch) | |
tree | 1ca451b59ae5279ede837dd9590ce807ef4cf4cf /Demo/scripts/unbirthday.py | |
parent | f8ae54d10c91d4e9fbb3d0008f5cdfd6710de8be (diff) | |
download | cpython-44fa566927987328e0d818071d7b2b7f473df1cd.zip cpython-44fa566927987328e0d818071d7b2b7f473df1cd.tar.gz cpython-44fa566927987328e0d818071d7b2b7f473df1cd.tar.bz2 |
correct spelling error
Diffstat (limited to 'Demo/scripts/unbirthday.py')
-rwxr-xr-x | Demo/scripts/unbirthday.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/scripts/unbirthday.py b/Demo/scripts/unbirthday.py index 492b247..cb018b6 100755 --- a/Demo/scripts/unbirthday.py +++ b/Demo/scripts/unbirthday.py @@ -20,7 +20,7 @@ def main(): if year in range(100): print 'I\'ll assume that by', year, year = year + 1900 - print 'you mean', year, 'and not the arly Christian era' + print 'you mean', year, 'and not the early Christian era' elif year not in range(1850, 2000): print 'It\'s hard to believe you were born in', year return |