small fixes and translation

This commit is contained in:
maccesch
2011-09-01 13:01:03 +02:00
parent e2407151ab
commit dcec449939
7 changed files with 30 additions and 21 deletions

View File

@@ -8,6 +8,7 @@ views/staff.py - The bulk of the application - provides most business logic and
"""
from datetime import datetime
import sys
from django.conf import settings
from django.contrib.auth.models import User
@@ -590,7 +591,7 @@ def ticket_list(request):
query_params['sortreverse'] = sortreverse
ticket_qs = apply_query(Ticket.objects.select_related(), query_params)
print str(ticket_qs.query)
print >> sys.stderr, str(ticket_qs.query)
## TAG MATCHING
if HAS_TAG_SUPPORT: