diff options
author | Justin Santa Barbara <justin@fathomdb.com> | 2010-08-20 14:50:43 +0100 |
---|---|---|
committer | Justin Santa Barbara <justin@fathomdb.com> | 2010-08-20 14:50:43 +0100 |
commit | 41864e2653286fd46c7b69ee992d4be492b014c6 (patch) | |
tree | f23aeef3bbb7c7f8acf396a06a797347d57a9c4c /nova/process.py | |
parent | 6ae66c595d4f85802045734ed1b230a292f9c953 (diff) | |
download | nova-41864e2653286fd46c7b69ee992d4be492b014c6.tar.gz nova-41864e2653286fd46c7b69ee992d4be492b014c6.tar.xz nova-41864e2653286fd46c7b69ee992d4be492b014c6.zip |
Fixed typo
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 259e3f92e..81262a506 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(_build_execution_error(exit_code)) elif self.on_process_ended is not None: self.on_process_ended.errback(reason) |