[python] Fix 9P muxing deadlock.

This commit is contained in:
Kris Maglione 2010-07-09 17:48:54 -04:00
parent 71891f6f00
commit b86ca7ea66
1 changed files with 1 additions and 1 deletions

View File

@ -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)