summaryrefslogtreecommitdiffstats
path: root/pym/getbinpkg.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/getbinpkg.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/getbinpkg.py')
-rw-r--r--pym/getbinpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/getbinpkg.py b/pym/getbinpkg.py
index d9c9810f5..197d777bf 100644
--- a/pym/getbinpkg.py
+++ b/pym/getbinpkg.py
@@ -418,7 +418,7 @@ def dir_get_metadata(baseurl, conn=None, chunk_size=3000, verbose=1, usingcache=
else:
keepconnection = 1
- if makepickle == None:
+ if makepickle is None:
makepickle = "/var/cache/edb/metadata.idx.most_recent"
conn,protocol,address,params,headers = create_conn(baseurl, conn)