Accidentally commited a changeset in the last push that stripped out all the import statements. Needless to say, this was bad - fixed now.

This commit is contained in:
Ryan McGrath 2009-11-20 04:19:43 -05:00
parent 61f77252bf
commit d37f91ce8e
2 changed files with 10 additions and 0 deletions

View file

@ -10,6 +10,11 @@
Questions, comments? ryan@venodesigns.net
"""
import httplib, urllib, urllib2, mimetypes, mimetools
from urlparse import urlparse
from urllib2 import HTTPError
__author__ = "Ryan McGrath <ryan@venodesigns.net>"
__version__ = "0.8"

View file

@ -10,6 +10,11 @@
Questions, comments? ryan@venodesigns.net
"""
import http.client, urllib, urllib.request, urllib.error, urllib.parse, mimetypes, mimetools
from urllib.parse import urlparse
from urllib.error import HTTPError
__author__ = "Ryan McGrath <ryan@venodesigns.net>"
__version__ = "0.8"