summaryrefslogtreecommitdiffstats
path: root/pym/portage_manifest.py
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2006-04-07 00:48:59 +0000
committerAlec Warner <antarus@gentoo.org>2006-04-07 00:48:59 +0000
commita7972f2f756788f50e71bb2a9e985f77fd140c5b (patch)
tree46a547e32c85f7391ebe96739dc0b81a40590334 /pym/portage_manifest.py
parent87010f8d058c843787587dac8d7404072e771ca0 (diff)
downloadportage-a7972f2f756788f50e71bb2a9e985f77fd140c5b.tar.gz
portage-a7972f2f756788f50e71bb2a9e985f77fd140c5b.tar.bz2
portage-a7972f2f756788f50e71bb2a9e985f77fd140c5b.zip
Change == None to is None
svn path=/main/trunk/; revision=3085
Diffstat (limited to 'pym/portage_manifest.py')
-rw-r--r--pym/portage_manifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage_manifest.py b/pym/portage_manifest.py
index 6881c924d..61dc7c18b 100644
--- a/pym/portage_manifest.py
+++ b/pym/portage_manifest.py
@@ -103,7 +103,7 @@ class Manifest(object):
mytype = self.guessType(myname)
if mytype == "AUX" and myname.startswith("files"+os.sep):
myname = myname[6:]
- if mytype == None:
+ if mytype is None:
continue
mysize = int(mysplit[3])
myhashes = {mysplit[0]: mysplit[1]}