Fixed exception handling in 'is_sortable' classmethod

This commit is contained in:
Brandon Taylor
2012-09-30 21:41:17 -04:00
parent 04bdb80637
commit 13af5f8142
+1 -1
View File
@@ -42,7 +42,7 @@ class Sortable(models.Model):
def is_sortable(cls):
try:
max_order = cls.objects.aggregate(models.Max('order'))['order__max']
except TypeError, IndexError:
except (TypeError, IndexError):
max_order = 0
return True if max_order > 1 else False