diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/views_caves.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/views_caves.py b/core/views_caves.py index 700779d..3b9360c 100644 --- a/core/views_caves.py +++ b/core/views_caves.py @@ -17,6 +17,7 @@ import re, urlparse from django.shortcuts import get_object_or_404 import settings + from PIL import Image, ImageDraw, ImageFont import string, os, sys, subprocess @@ -61,7 +62,7 @@ def caveindex(request): def millenialcaves(request): #RW messing around area - caves = Cave.objects.all() + return HttpResponse("It's Rad breaking things") |