mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-04 07:00:23 +00:00
Simplified Logger.writeln() method.
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3808 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
62f586f2c7
commit
fa0c868773
1 changed files with 1 additions and 2 deletions
|
|
@ -184,8 +184,7 @@ class Logger (object):
|
|||
"""
|
||||
Write string to output descriptor plus a newline.
|
||||
"""
|
||||
self.write(s)
|
||||
self.write(unicode(os.linesep), **args)
|
||||
self.write(u"%s%s" % (s, unicode(os.linesep)), **args)
|
||||
|
||||
def has_part (self, name):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue