diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-29 04:39:12 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-29 04:39:12 +0000 |
commit | 3bd844e695c8295c23d64d816bd763543cc9728f (patch) | |
tree | 5c8ae0b247d082498a3e9c02e1eeca9af6a1f0c2 /Doc/lib/email-unpack.py | |
parent | c4996ba794d9438be8e472ad5f6c3c55fbf751e8 (diff) | |
download | cpython-git-3bd844e695c8295c23d64d816bd763543cc9728f.tar.gz |
Get rid of most of the remaining uses of <>. There's still Tools/* thogh.
Diffstat (limited to 'Doc/lib/email-unpack.py')
-rw-r--r-- | Doc/lib/email-unpack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/email-unpack.py b/Doc/lib/email-unpack.py index fc05d99109..fb03e58e9e 100644 --- a/Doc/lib/email-unpack.py +++ b/Doc/lib/email-unpack.py @@ -37,7 +37,7 @@ Usage: %prog [options] msgfile os.mkdir(opts.directory) except OSError, e: # Ignore directory exists error - if e.errno <> errno.EEXIST: + if e.errno != errno.EEXIST: raise fp = open(msgfile) |