summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-06-26 13:08:24 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-06-26 13:08:24 (GMT)
commita7ee9eb3d95f9c4dfb0fa8e52523cb46959e2301 (patch)
tree0d3c78df03ca9fd1787cfcabc8ff835359b4a1ef /Lib
parentcd77e1cb2d8fc02fb8be8961ce45c121dcede6d6 (diff)
downloadcpython-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')
-rwxr-xr-xLib/mailbox.py2
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