~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/vocabularies.py

Add stub pillaraffiliation implementation and remove ~ from lp name display

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
        try:
197
197
            if self.enhanced_picker_enabled:
198
198
                # Display the person's Launchpad id next to their name.
199
 
                title = "%s (~%s)" % (obj.displayname, obj.name)
 
199
                title = "%s (%s)" % (obj.displayname, obj.name)
200
200
            else:
201
201
                title = obj.displayname
202
202
            return SimpleTerm(obj, obj.name, title)