﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
465	Load template relative to ...	MikeP	hodgestar	"In genshi/template/loader.py is wery annoying :-) error which make loading template on path relative to ... allmost impossible (in case non-unique template name).[[BR]]

Line 181 is:
{{{
        if relative_to and (not search_path or not os.path.isabs(relative_to)):
	            filename = os.path.join(os.path.dirname(relative_to), filename)
	
	        filename = os.path.normpath(filename)
	        cachekey = filename
}}}
but correct is:
{{{
        if relative_to and (not search_path or not os.path.isabs(filename)):
	            filename = os.path.join(os.path.dirname(relative_to), filename)
	
	        filename = os.path.normpath(filename)
	        cachekey = filename
}}}
"	defect	closed	critical	0.7	Template processing	0.6	wontfix	TemplateLoader	
