From 291e309d8d1fbd6169dd84b3a1bb7971d4568701 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 5 Apr 2006 17:36:12 +0000 Subject: [PATCH] removed some extraneous imports in django.utils.feedgenerator git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2618 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/feedgenerator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/utils/feedgenerator.py b/django/utils/feedgenerator.py index cd5ff7abc9..f7c25f2933 100644 --- a/django/utils/feedgenerator.py +++ b/django/utils/feedgenerator.py @@ -21,8 +21,6 @@ http://diveintomark.org/archives/2004/02/04/incompatible-rss from django.utils.xmlutils import SimplerXMLGenerator import datetime, re, time import email.Utils -from xml.dom import minidom -from xml.parsers.expat import ExpatError def rfc2822_date(date): return email.Utils.formatdate(time.mktime(date.timetuple()))