From b0b6c4c9ea70f7cb7b2b3358d13762a54b9f24e2 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Mon, 6 Apr 2015 15:03:14 -0700 Subject: [PATCH] Remove suprious comma. Fixing a tuple <= int bug python 2 didn't catch this type error. Thankfully python 3 does. --- samples/changelist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2