From: Zac Medico Date: Thu, 12 May 2011 05:35:40 +0000 (-0700) Subject: treewalk: fix inverted counter init logic X-Git-Tag: v2.1.9.49~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=294afa2858aca7f5ba94b4c09cdbe059758d5280;p=portage.git treewalk: fix inverted counter init logic --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index a54adc078..079743c90 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -3243,7 +3243,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'),