summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuriy Taraday <yorik.sar@gmail.com>2011-05-06 09:13:46 +0400
committerYuriy Taraday <yorik.sar@gmail.com>2011-05-06 09:13:46 +0400
commit6160e3dbdf0dcc736fb650d025da89b269edbf59 (patch)
tree8d90c045d63df0f67372cb5573008567ece42a1c
parent57fbc3f748389410bad29a82e685e0af2ee26646 (diff)
downloadnova-6160e3dbdf0dcc736fb650d025da89b269edbf59.tar.gz
nova-6160e3dbdf0dcc736fb650d025da89b269edbf59.tar.xz
nova-6160e3dbdf0dcc736fb650d025da89b269edbf59.zip
Add two whitespaces to conform PEP8.
-rw-r--r--nova/compute/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index 84feb98ec..c6f957073 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -750,7 +750,7 @@ class ComputeManager(manager.SchedulerDependentManager):
LOG.audit(_("Get console output for instance %s"), instance_id,
context=context)
output = self.driver.get_console_output(instance_ref)
- return output.decode('utf-8','replace').encode('ascii','replace')
+ return output.decode('utf-8', 'replace').encode('ascii', 'replace')
@exception.wrap_exception
def get_ajax_console(self, context, instance_id):