diff options
author | Justin Santa Barbara <justin@fathomdb.com> | 2010-08-21 11:54:03 +0100 |
---|---|---|
committer | Justin Santa Barbara <justin@fathomdb.com> | 2010-08-21 11:54:03 +0100 |
commit | c4bf107b7e4fd64376dab7ebe39e4531f64879c5 (patch) | |
tree | ec596d0d489b36ce70fac25766e0f93a275e2552 /nova/process.py | |
parent | 41864e2653286fd46c7b69ee992d4be492b014c6 (diff) | |
download | nova-c4bf107b7e4fd64376dab7ebe39e4531f64879c5.tar.gz nova-c4bf107b7e4fd64376dab7ebe39e4531f64879c5.tar.xz nova-c4bf107b7e4fd64376dab7ebe39e4531f64879c5.zip |
Added missing "self."
Diffstat (limited to 'nova/process.py')
-rw-r--r-- | nova/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/process.py b/nova/process.py index 81262a506..069310802 100644 --- a/nova/process.py +++ b/nova/process.py @@ -103,7 +103,7 @@ class BackRelayWithInput(protocol.ProcessProtocol): # NOTE(justinsb): This logic is a little suspicious to me... # If the callback throws an exception, then errback will be # called also. However, this is what the unit tests test for... - self.deferred.errback(_build_execution_error(exit_code)) + self.deferred.errback(self._build_execution_error(exit_code)) elif self.on_process_ended is not None: self.on_process_ended.errback(reason) |