Clean up pep8 E128 violations
Fixed E128 errors.
All ignores are to be removed in the next sequence of patches.
Change-Id: If014be8524a43842b7e6aa3243c517aa25980976
diff --git a/stress/driver.py b/stress/driver.py
index bdb5d4b..9ab6fb8 100644
--- a/stress/driver.py
+++ b/stress/driver.py
@@ -73,9 +73,8 @@
nodes = []
if keypath is None or user is None:
return nodes
- lines = utils.util.ssh(keypath, user, controller,
- "nova-manage service list | grep ^nova-compute").\
- split('\n')
+ cmd = "nova-manage service list | grep ^nova-compute"
+ lines = utils.util.ssh(keypath, user, controller, cmd).split('\n')
# For example: nova-compute xg11eth0 nova enabled :-) 2011-10-31 18:57:46
# This is fragile but there is, at present, no other way to get this info.
for line in lines: