mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-26 00:54:43 +00:00
Remove unnecessary unicode() from StatusLogger.writeln()
This commit is contained in:
parent
bae4282c92
commit
c6a06d99ac
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ class StatusLogger (object):
|
|||
|
||||
def writeln (self, msg):
|
||||
"""Write status message and line break to file descriptor."""
|
||||
self.fd.write(u"%s%s" % (msg, unicode(os.linesep)))
|
||||
self.fd.write(u"%s%s" % (msg, os.linesep))
|
||||
|
||||
def flush (self):
|
||||
"""Flush file descriptor."""
|
||||
|
|
|
|||
Loading…
Reference in a new issue