diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-06-26 13:08:24 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-06-26 13:08:24 (GMT) |
commit | a7ee9eb3d95f9c4dfb0fa8e52523cb46959e2301 (patch) | |
tree | 0d3c78df03ca9fd1787cfcabc8ff835359b4a1ef /Lib/mailbox.py | |
parent | cd77e1cb2d8fc02fb8be8961ce45c121dcede6d6 (diff) | |
download | cpython-a7ee9eb3d95f9c4dfb0fa8e52523cb46959e2301.zip cpython-a7ee9eb3d95f9c4dfb0fa8e52523cb46959e2301.tar.gz cpython-a7ee9eb3d95f9c4dfb0fa8e52523cb46959e2301.tar.bz2 |
[Bug #1512163] Fix typo.
This change will probably break tests on FreeBSD buildbots, but I'll check in
a fix for that next.
Diffstat (limited to 'Lib/mailbox.py')
-rwxr-xr-x | Lib/mailbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py index bb115e1..3777c8e 100755 --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -15,7 +15,7 @@ import email.Generator import rfc822 import StringIO try: - import fnctl + import fcntl except ImportError: fcntl = None |