From: Zac Medico Date: Thu, 12 May 2011 05:35:40 +0000 (-0700) Subject: treewalk: fix inverted counter init logic X-Git-Tag: v2.2.0_alpha33~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f8008b86ae0f6b324c74cf8cbc999f2bca881e92;p=portage.git treewalk: fix inverted counter init logic --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 41a932991..989e96942 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -3277,7 +3277,7 @@ class dblink(object): self.copyfile(inforoot+"/"+x) # write local package counter for recording - if counter is not None: + if counter is None: counter = self.vartree.dbapi.counter_tick(mycpv=self.mycpv) codecs.open(_unicode_encode(os.path.join(self.dbtmpdir, 'COUNTER'), encoding=_encodings['fs'], errors='strict'),