aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/def_list.py
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2010-07-05 22:53:31 -0400
committerToshio Kuratomi <toshio@fedoraproject.org>2010-07-05 22:53:31 -0400
commit2eb00c816c6dc31dbbec6c47f8c7ff70ed0785d2 (patch)
tree53024beda5d31143da2a2a0a2e81fa48ca29ba14 /markdown/extensions/def_list.py
parenta91f766c57d67cebbfc35020f89016ceb4358926 (diff)
downloadmarkdown-2eb00c816c6dc31dbbec6c47f8c7ff70ed0785d2.tar.gz
markdown-2eb00c816c6dc31dbbec6c47f8c7ff70ed0785d2.tar.bz2
markdown-2eb00c816c6dc31dbbec6c47f8c7ff70ed0785d2.zip
Rename misc.py to util.py at the request of upstream
Diffstat (limited to 'markdown/extensions/def_list.py')
-rw-r--r--markdown/extensions/def_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/extensions/def_list.py b/markdown/extensions/def_list.py
index d16196e..b5ba92f 100644
--- a/markdown/extensions/def_list.py
+++ b/markdown/extensions/def_list.py
@@ -21,7 +21,7 @@ Copyright 2008 - [Waylan Limberg](http://achinghead.com)
import re
import markdown
-from markdown.misc import etree
+from markdown.util import etree
class DefListProcessor(markdown.blockprocessors.BlockProcessor):