Page not found (404)

Request Method: GET
Request URL: http://commandline.org.uk/more/squat-for-the-win-2008-01-09-03-36

Using the URLconf defined in basic.urls, Django tried these URL patterns, in this order:

  1. ^admin/
  2. ^comments/
  3. ^latest/$
  4. ^links/$
  5. ^feeds/(?P<url>.*)/$
  6. ^feeds/$
  7. ^index.rss20/$
  8. ^index.atom/$
  9. ^(?P<slug>[-\w]+)/index.rss20/$
  10. .html/$
  11. ^ ^(?P<category>[-\w]+)/(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$
  12. ^ ^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$
  13. ^ ^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$
  14. ^ ^(?P<year>\d{4})/(?P<month>[a-z]{3})/$
  15. ^ ^(?P<year>\d{4})/$
  16. ^ ^categories/(?P<slug>[-\w]+)/$
  17. ^ ^categories/$
  18. ^ ^search/$
  19. ^ ^page/(?P<page>\w)/$
  20. ^ ^(?P<slug>[-\w]+)/$
  21. ^ ^$

The current URL, more/squat-for-the-win-2008-01-09-03-36, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.