Code review comment for lp:~jakedahn/horizon/lp77670

Revision history for this message
Devin Carlen (devcamcar) wrote :

9 + choices = [(i.id, i.id + " ("+i.displayName+")")
10 + for i in project.get_instances()]

can be

9 + choices = [(i.id, "%s (%s)" % (i.id, i.displayName)
10 + for i in project.get_instances()]

review: Needs Fixing

« Back to merge proposal