Remove stray print statement

This commit is contained in:
Tom Talbot 2014-07-10 16:30:00 +01:00
parent 44429b96d2
commit 844e1a66ef

View file

@ -152,8 +152,6 @@ def add(request):
def usage(request, image_id):
image = get_object_or_404(get_image_model(), id=image_id)
print dir(image)
return render(request, "wagtailimages/images/usage.html", {
'image': image,
})