summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorChristian Berendt <berendt@b1-systems.de>2011-03-16 10:29:04 +0100
committerChristian Berendt <berendt@b1-systems.de>2011-03-16 10:29:04 +0100
commit8b3e35b157c688fd38d5aa0eb10ddef33653003d (patch)
tree637171f2912bb038f91380f88c5cbbe0e5afe6d6 /bin
parenta5bf9b4561d8ff0113406a975518b5fd4a4d3bd8 (diff)
downloadnova-8b3e35b157c688fd38d5aa0eb10ddef33653003d.tar.gz
nova-8b3e35b157c688fd38d5aa0eb10ddef33653003d.tar.xz
nova-8b3e35b157c688fd38d5aa0eb10ddef33653003d.zip
fixed pep8 errors (with version 0.5.0)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nova-manage9
1 files changed, 3 insertions, 6 deletions
diff --git a/bin/nova-manage b/bin/nova-manage
index 44b1d9ac6..c38e25d6b 100755
--- a/bin/nova-manage
+++ b/bin/nova-manage
@@ -739,8 +739,7 @@ class InstanceCommands(object):
_('project'),
_('user'),
_('zone'),
- _('index')
- )
+ _('index'))
if host == None:
instances = db.instance_get_all(context.get_admin_context())
@@ -762,8 +761,7 @@ class InstanceCommands(object):
instance['project_id'],
instance['user_id'],
instance['availability_zone'],
- instance['launch_index']
- )
+ instance['launch_index'])
class VolumeCommands(object):
@@ -1053,8 +1051,7 @@ CATEGORIES = [
('instance_type', InstanceTypeCommands),
('image', ImageCommands),
('flavor', InstanceTypeCommands),
- ('instance', InstanceCommands)
-]
+ ('instance', InstanceCommands)]
def lazy_match(name, key_value_tuples):