﻿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
17566	RegexURLResolver.__repr__(self) is not unicode safe.	otto		"This is a sister to the (fixed) tickets #15795, #16158.

RegexURLResolver.__repr__(self) can throw a UnicodeDecodeError. The problem comes from the parameter self.urlconf_name. The exception is ""UnicodeDecodeError: 'ascii' codec can't decode byte... (etc).""

A simple (and possibly naive) solution is to replace the occurrence of self.urlconf_name with str(self.urlconf_name).decode('utf-8') in __repr__(self). This seems to fix it for now, but someone who is working on this module might want to take a closer look."	Uncategorized	closed	Core (URLs)	1.4-alpha-1	Normal	fixed	unicode		Accepted	1	0	0	0	0	0
