changeset 159:bf7e91cef8af draft

tables: wrong call for maintainer bugs From: Diego Escalante Urrelo <diegoe@gnome.org>
author diegoe-guest
date Sun, 16 Aug 2009 04:46:34 +0000
parents b18760c0a34f
children 98109b7ce858
files bts_webui/amancay/tables.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bts_webui/amancay/tables.py
+++ b/bts_webui/amancay/tables.py
@@ -7,7 +7,7 @@
 
 from amancay.btsqueries import SoapQueries
 
-PER_PAGE = 4
+PER_PAGE = 10
 def _get_bug_list(request, view):
 	"""
 	Process the requested bug list corresponding to a given view.
@@ -21,7 +21,7 @@
 		else:
 			user_emails = request.session.get('maintaineremail_set')
 
-		bugs = queries.get_tagged_bugs(user_emails)
+		bugs = queries.get_maintainers_bugs(user_emails)
 
 	elif view == 'submitted_bugs':
 		if request.user.is_authenticated():