cleanup another inconsistent use of 1 for True in nova-manage

This commit is contained in:
Ken Pepple
2011-03-18 23:10:14 -07:00
parent 9ba014d1ad
commit aea1a58dd8

View File

@@ -874,7 +874,7 @@ class InstanceTypeCommands(object):
if name == None:
inst_types = instance_types.get_all_types()
elif name == "--all":
inst_types = instance_types.get_all_types(1)
inst_types = instance_types.get_all_types(True)
else:
inst_types = instance_types.get_instance_type(name)
except exception.DBError, e: