From 3bd844e695c8295c23d64d816bd763543cc9728f Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 29 Aug 2006 04:39:12 +0000 Subject: Get rid of most of the remaining uses of <>. There's still Tools/* thogh. --- Doc/lib/email-unpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Doc/lib/email-unpack.py') 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) -- cgit v1.2.1