From: Diane Trout Date: Mon, 6 Apr 2015 22:03:14 +0000 (-0700) Subject: Remove suprious comma. Fixing a tuple <= int bug X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=b0b6c4c9ea70f7cb7b2b3358d13762a54b9f24e2 Remove suprious comma. Fixing a tuple <= int bug python 2 didn't catch this type error. Thankfully python 3 does. --- diff --git a/samples/changelist.py b/samples/changelist.py index 842eb0a..42e1b59 100644 --- a/samples/changelist.py +++ b/samples/changelist.py @@ -28,7 +28,7 @@ class HTSChangeList(ChangeList): 'model_admin': model_admin #model_admin } if django.VERSION[0] >= 1 and django.VERSION[1] >= 4: - args['list_max_show_all'] = 20000, #list_max_show_all + args['list_max_show_all'] = 20000 #list_max_show_all super(HTSChangeList, self).__init__(**args) self.is_popup = False