mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-31 13:10:37 +00:00
fix imports
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3170 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
5ba1324a73
commit
9a431fde40
2 changed files with 3 additions and 2 deletions
|
|
@ -34,6 +34,7 @@ import linkcheck.linkparse
|
|||
import linkcheck.checker
|
||||
import linkcheck.cache.geoip
|
||||
import linkcheck.director
|
||||
import linkcheck.director.status
|
||||
import linkcheck.strformat
|
||||
import linkcheck.containers
|
||||
import linkcheck.log
|
||||
|
|
@ -362,7 +363,7 @@ class UrlBase (object):
|
|||
except KeyboardInterrupt:
|
||||
raise
|
||||
except:
|
||||
linkcheck.director.internal_error()
|
||||
linkcheck.director.status.internal_error()
|
||||
|
||||
def add_country_info (self):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ def check_target (target):
|
|||
linkcheck.log.warn(linkcheck.LOG_CHECK,
|
||||
"interrupt did not reach the main thread")
|
||||
except:
|
||||
linkcheck.director.internal_error()
|
||||
status.internal_error()
|
||||
|
||||
|
||||
def start_thread (target):
|
||||
|
|
|
|||
Loading…
Reference in a new issue