From 710e250646f7a69b53d9d175f380bb0f6606b277 Mon Sep 17 00:00:00 2001 From: Russell Haering Date: Thu, 9 Jan 2014 15:35:35 -0800 Subject: [PATCH] add join to base command result --- teeth_agent/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teeth_agent/base.py b/teeth_agent/base.py index f63a62a61..68c030a37 100644 --- a/teeth_agent/base.py +++ b/teeth_agent/base.py @@ -75,6 +75,9 @@ class BaseCommandResult(encoding.Serializable): def is_done(self): return self.command_status != AgentCommandStatus.RUNNING + def join(self): + return self + class SyncCommandResult(BaseCommandResult): def __init__(self, command_name, command_params, success, result_or_error):