From 0974f8737a3c56a7c076f9d0b757c6cb106324fb Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 9 Jun 2010 14:47:41 +0200 Subject: Channel: Read method revised - now it really really doesn't block anymore, and it runs faster as well, about 2/3 of the performance we have when being in serial mode --- lib/git/async/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/async/task.py') diff --git a/lib/git/async/task.py b/lib/git/async/task.py index d18cedca..539b240f 100644 --- a/lib/git/async/task.py +++ b/lib/git/async/task.py @@ -66,7 +66,7 @@ class OutputChannelTask(Node): def is_closed(self): """:return: True if the task's write channel is closed""" - return self._out_wc.closed + return self._out_wc.closed() def error(self): """:return: Exception caught during last processing or None""" -- cgit v1.2.1