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

Collapse All | Expand All

(-)GLIUtility.py (-3 / +3 lines)
Lines 354-362 Link Here
354
		status = spawn("rsync --quiet " + uri + " " + path)
354
		status = spawn("rsync --quiet " + uri + " " + path)
355
355
356
	elif re.match('^file://', uri):
356
	elif re.match('^file://', uri):
357
		file = uri[7:]
357
		r_file = uri[7:]
358
		if os.path.isfile(file):
358
		if os.path.isfile(r_file):
359
			shutil.copy(file, path)
359
			shutil.copy(r_file, path)
360
			if os.path.isfile(path):
360
			if os.path.isfile(path):
361
				status = 0
361
				status = 0
362
			else:
362
			else:

Return to bug 90823