mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-05 15:30:57 +00:00
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:
parent
300660af72
commit
677458b8d6
4 changed files with 5 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ import os
|
|||
|
||||
import linkcheck
|
||||
import linkcheck.logger
|
||||
import linkcheck.configuration
|
||||
|
||||
|
||||
def sqlify (s):
|
||||
|
|
|
|||
Loading…
Reference in a new issue