From dbee03e4859c2061a4e0a50e9ddeaf1fd5565e42 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Mon, 3 Jan 2011 15:43:05 +0000
Subject: [PATCH] bug 1362: fixed typo

---
 RTCP/Run/src/util/tee.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/RTCP/Run/src/util/tee.py b/RTCP/Run/src/util/tee.py
index bb55ddd6d1a..b1a8ab7a9f6 100644
--- a/RTCP/Run/src/util/tee.py
+++ b/RTCP/Run/src/util/tee.py
@@ -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 )
-- 
GitLab