Skip to content
Snippets Groups Projects
Commit dbee03e4 authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: fixed typo

parent a2969adf
Branches
Tags
No related merge requests found
......@@ -16,7 +16,7 @@ class Tee(Thread):
Thread.__init__(self)
self.inputfd = inputfd
self.outputfiles = filter( outputfiles, lambda x: x is not None )
self.outputfiles = filter( lambda x: x is not None, outputfiles )
self.logger = logger
setNonBlock( self.inputfd )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment