﻿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
25595	Invalid regexp in URLValidator can't handle file:// schemes	Marcin Nowak	Adam Zapletal	"Regexp does not allow to use `file` scheme in URLValidator.

== Steps to reproduce ==

{{{
from django.core.validators import URLValidator
URLValidator(schemes=['file'])('file:///tmp/somefile')
}}}

== Expected result ==

No exception should be raised.

== Current result ==

{{{
ValidationError: [u'Enter a valid URL.']
}}}

"	Bug	closed	Core (Other)	1.8	Normal	fixed		Adam Zapletal	Ready for checkin	1	0	0	0	0	0
