Fix an error handling path that would never have been reached. fixes ticket:2543

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Hopwood 2016-02-02 18:55:34 +00:00
parent 0d6fcf445e
commit 278ee0db76

View File

@ -1171,7 +1171,7 @@ class MDMFSlotWriteProxy:
else:
if on_success: on_success()
return results
d.addCallback(_result)
d.addBoth(_result)
return d
def _handle_bad_struct(f):