From c6104f941b5027a6c170e66abd28e45f2c42f92b Mon Sep 17 00:00:00 2001 From: Parth Buch Date: Mon, 18 Jun 2012 16:59:44 +0530 Subject: Removed the authentication codes --- stapp/video/views.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'stapp/video/views.py') diff --git a/stapp/video/views.py b/stapp/video/views.py index 2144592..8361b9f 100644 --- a/stapp/video/views.py +++ b/stapp/video/views.py @@ -1,8 +1,7 @@ from django.http import HttpResponse from django.template import RequestContext from django.shortcuts import render_to_response, get_object_or_404, redirect -from video.models import * - +from video.models import Video def show(request,video_id=None): videos = Video.objects.all() -- cgit