From 30e5d7e85e8da364d96dd1aba3769b0a48fb726c Mon Sep 17 00:00:00 2001 From: Chris Beaven Date: Fri, 20 May 2011 01:45:30 +0000 Subject: [PATCH] Remove an unused import from django.core.paginator git-svn-id: http://code.djangoproject.com/svn/django/trunk@16247 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/paginator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/core/paginator.py b/django/core/paginator.py index bd8757c708..8b4d2891b2 100644 --- a/django/core/paginator.py +++ b/django/core/paginator.py @@ -1,5 +1,4 @@ from math import ceil -import collections class InvalidPage(Exception): pass