﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7926	'NoneType' object is not iterable	tobi	nobody	"I have Django trunk with Apache + mod_python.

While trying to access the admin page I got:

{{{
TypeError at /admin/
'NoneType' object is not iterable
...
PATH_INFO: u'admin/'
}}}


Now I changed django/core/handlers/modpython.py on Line 31 from:
{{{
 self.path_info = force_unicode(req.uri[len(root):])
}}}
to:
{{{
 self.path_info = ""/"" + force_unicode(req.uri[len(root):])
}}}

and everything works fine again."		closed	Documentation	dev		invalid	NoneType, mod_python		Unreviewed	0	1	0	0	0	0
