euscanwww: removed useless 'print'

Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
volpino 2012-11-01 16:36:14 +01:00
parent 352dfa9e14
commit 2bf0061979
1 changed files with 0 additions and 2 deletions

View File

@ -147,13 +147,11 @@ class MaintainerFeed(BaseFeed):
feed_type = Atom1Feed
def get_object(self, request, maintainer_id=None, maintainer_email=None):
print maintainer_id, maintainer_email
if maintainer_id:
obj = get_object_or_404(Maintainer, id=maintainer_id)
else:
obj = get_object_or_404(Maintainer, email=maintainer_email)
print obj
return {
"obj": obj,
"options": request.GET,