From: Zac Medico Date: Tue, 9 Oct 2007 06:06:27 +0000 (-0000) Subject: Remove a redundant os.access() call in portdbapi.aux_get() X-Git-Tag: v2.2_pre1~680 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=df43103d0dd5be8a96ff61476c97fa0209deb712;p=portage.git Remove a redundant os.access() call in portdbapi.aux_get() and handle the potential OSError instead. svn path=/main/trunk/; revision=8009 --- diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index 6ef737f8f..d47f6fd9d 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -272,14 +272,14 @@ class portdbapi(dbapi): noiselevel=-1) - if os.access(myebuild, os.R_OK): + try: emtime = os.stat(myebuild)[stat.ST_MTIME] - else: + except OSError: writemsg("!!! aux_get(): ebuild for '%(cpv)s' does not exist at:\n" % {"cpv":mycpv}, noiselevel=-1) writemsg("!!! %s\n" % myebuild, noiselevel=-1) - raise KeyError + raise KeyError(mycpv) try: mydata = self.auxdb[mylocation][mycpv]