codeeu / coding-events

A Django app for adding EU Code Week events and showing them on a map.
http://events.codeweek.eu
MIT License
17 stars 36 forks source link

Weird url in web/urls that might be causing errors #360

Closed ialja closed 10 years ago

ialja commented 10 years ago

In web/urls.py we have the following lines:

# Note: do not place any url after this one of it will not work
url(r'^(?P<country_code>\w+)/$', 'events.index', name='web.index'),

Seems like some legacy code that's not being used anymore and is causing errors every time somebody makes a typo in the url. Can others also check if there's any existing reason for using this?