fix imports

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3330 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2006-06-01 13:54:55 +00:00
parent 300660af72
commit 677458b8d6
4 changed files with 5 additions and 7 deletions

View file

@ -15,7 +15,6 @@
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
import cStringIO as StringIO
import filecmp
import os
import unittest
import difflib

View file

@ -18,11 +18,10 @@
An XML logger.
"""
import linkcheck.logger.xmllog
import linkcheck.configuration
import xmllog
class CustomXMLLogger (linkcheck.logger.xmllog.XMLLogger):
class CustomXMLLogger (xmllog.XMLLogger):
"""
XML custom output for easy post-processing.
"""

View file

@ -18,11 +18,10 @@
A GraphXML logger.
"""
import linkcheck.logger.xmllog
import linkcheck.configuration
import xmllog
class GraphXMLLogger (linkcheck.logger.xmllog.XMLLogger):
class GraphXMLLogger (xmllog.XMLLogger):
"""
XML output mirroring the GML structure. Easy to parse with any XML
tool.

View file

@ -23,6 +23,7 @@ import os
import linkcheck
import linkcheck.logger
import linkcheck.configuration
def sqlify (s):