From 6824b9a5bd9eaeb092caf9b9fcb8afe1f4cdda96 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 8 Jan 2013 16:03:34 -0800 Subject: [PATCH] Don't accidentally transform an object into a tuple. I had an extra ',' that was turning a simple assignment into assignment of a tuple containing the variable I was expecting. needless to say this cause trouble. --- htsworkflow/frontend/samples/changelist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htsworkflow/frontend/samples/changelist.py b/htsworkflow/frontend/samples/changelist.py index 54aeed1..1b50418 100644 --- a/htsworkflow/frontend/samples/changelist.py +++ b/htsworkflow/frontend/samples/changelist.py @@ -38,8 +38,8 @@ class HTSChangeList(ChangeList): def get_query_set(self, request=None): args = {} if django.VERSION[0] >= 1 and django.VERSION[1] >= 4: - args['request'] = request, #list_max_show_all - + args['request'] = request #list_max_show_all + qs = super(HTSChangeList, self).get_query_set(**args) if self.extra_filters: new_qs = qs.filter(**self.extra_filters) -- 2.30.2