Hide Forgot
Description of problem: Currently we use the Pretty Name for the non-variant, non-arch specific distro. We use the cobbler name when we need to display the specific variant arch version that is going to be installed. Instead of using the cobbler name just use the pretty name with variant and arch appended to it. Version-Release number of selected component (if applicable): 0.8.0
*** Bug 772313 has been marked as a duplicate of this bug. ***
AFAICT Dan has done this with the following: def __unicode__(self): if self.variant: return u'%s %s %s' % (self.distro, self.variant, self.arch) else: return u'%s %s' % (self.distro, self.arch) def __str__(self): return str(unicode(self)) And then for the distro listing in the recipe widget we return the output from __str__.
Beaker 0.9.0 has been released.