Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 205318
Collapse All | Expand All

(-)pym/portage.py (-1 / +1 lines)
Lines 8636-8642 Link Here
8636
			try:
8636
			try:
8637
				s = os.lstat(path)
8637
				s = os.lstat(path)
8638
			except OSError, e:
8638
			except OSError, e:
8639
				if e.errno != errno.ENOENT:
8639
				if e.errno not in (errno.ENOENT, errno.ENOTDIR):
8640
					raise
8640
					raise
8641
				del e
8641
				del e
8642
				continue
8642
				continue

Return to bug 205318