adding the forgotten parentheses

This commit is contained in:
Jake Dahn 2011-05-04 10:48:51 -05:00
parent 5a25df79ec
commit 296216e10c
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def get_instance_type_choices():
return rv
def get_instance_choices(project):
choices = [(i.id, "%s (%s)" % (i.id, i.displayName)
choices = [(i.id, "%s (%s)" % (i.id, i.displayName))
for i in project.get_instances()]
if not len(choices):
choices = [('', 'none available')]