]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/views/exceptions.py
Add separate views for the top servers on a map.
[xonotic/xonstat.git] / xonstat / views / exceptions.py
1 import logging
2 import random
3
4 def notfound(request):
5     request.response.status = 404
6     return {'rand': int(random.random() * 100)}