Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 223417 | Differences between
and this patch

Collapse All | Expand All

(-)pym/portage.py (-1 / +1 lines)
Lines 204-210 Link Here
204
	try:
204
	try:
205
		pathstat = os.stat(mypath)
205
		pathstat = os.stat(mypath)
206
		if stat.S_ISDIR(pathstat[stat.ST_MODE]):
206
		if stat.S_ISDIR(pathstat[stat.ST_MODE]):
207
			mtime = pathstat[stat.ST_MTIME]
207
			mtime = pathstat.st_mtime
208
		else:
208
		else:
209
			raise portage_exception.DirectoryNotFound(mypath)
209
			raise portage_exception.DirectoryNotFound(mypath)
210
	except EnvironmentError, e:
210
	except EnvironmentError, e:

Return to bug 223417