1👍
You have [A-B]
will only match the letters A and B.
If you only want to match uppercase letters you could do:
url(r'^elus/(?P<council>[A-Z]+)$
Or, a common approach is to use [\w-]+
, which will match upper case A-Z, lowercase a-z, digits 0-9, underscores, and hyphens:
url(r'^elus/(?P<council>[\w-]+)$
Source:stackexchange.com