Import style nit.

This commit is contained in:
Georg Brandl 2009-02-24 13:34:39 +01:00
parent 965a8c1d20
commit 29247f0896

View File

@ -16,12 +16,10 @@ import posixpath
import cPickle as pickle
from os import path
try:
import hashlib
md5 = hashlib.md5
from hashlib import md5
except ImportError:
# 2.4 compatibility
import md5
md5 = md5.new
from md5 import md5
from docutils import nodes
from docutils.io import DocTreeInput, StringOutput