diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-20 14:49:01 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-20 14:49:01 +0000 |
commit | 6fb135059d2d3cdb10ad70ee6b7569b34aa247ed (patch) | |
tree | afd02accc2bda484e48c5f76280d86fe2b88baff | |
parent | 0ad3ec895c1456913d3917f0409621e60c3be98f (diff) | |
download | portage-6fb135059d2d3cdb10ad70ee6b7569b34aa247ed.tar.gz portage-6fb135059d2d3cdb10ad70ee6b7569b34aa247ed.tar.bz2 portage-6fb135059d2d3cdb10ad70ee6b7569b34aa247ed.zip |
Remove old debugging related error message.
svn path=/main/trunk/; revision=2415
-rw-r--r-- | pym/portage.py | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/pym/portage.py b/pym/portage.py index 4c9a0a04e..3d2058f15 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -4712,22 +4712,7 @@ class portdbapi(dbapi): ret=None if psplit: for x in self.porttrees: - # XXX Why are there errors here? XXX - try: - file=x+"/"+mysplit[0]+"/"+psplit[0]+"/"+mysplit[1]+".ebuild" - except SystemExit, e: - raise - except Exception, e: - print - print "!!! Problem with determining the name/location of an ebuild." - print "!!! Please report this on IRC and bugs if you are not causing it." - print "!!! mycpv: ",mycpv - print "!!! mysplit:",mysplit - print "!!! psplit: ",psplit - print "!!! error: ",e - print - sys.exit(17) - + file=x+"/"+mysplit[0]+"/"+psplit[0]+"/"+mysplit[1]+".ebuild" if os.access(file, os.R_OK): # when found ret=[file, x] |