mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-19 22:01:00 +00:00
Merge pull request #310 from cjmayo/writeln
Remove unnecessary unicode() from StatusLogger.writeln()
This commit is contained in:
commit
07cf9c1c11
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