wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit b86ca7ea66ceb6a3e44b9c37d591aa2019ef6f6c
parent 71891f6f00d9e8134f1197f010a5f2ad7437f6ae
Author: Kris Maglione <kris@suckless.org>
Date:   Fri,  9 Jul 2010 17:48:54 -0400

[python] Fix 9P muxing deadlock.

Diffstat:
alternative_wmiircs/python/pyxp/asyncclient.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/alternative_wmiircs/python/pyxp/asyncclient.py b/alternative_wmiircs/python/pyxp/asyncclient.py @@ -75,7 +75,7 @@ class Client(client.Client): fcall.fid = yield path, callback, fail resp = yield fcall yield self._file(self, origpath or '/'.join(path), resp, fcall.fid, mode, - cleanup=lambda: self._clunk(fcall.fid)) + cleanup=lambda: self._aclunk(fcall.fid)) def aopen(self, path, callback=True, fail=None, mode=OREAD): assert callable(callback)