summaryrefslogtreecommitdiffstats
path: root/pym/portage_manifest.py
diff options
context:
space:
mode:
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]}