~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugtracker.py

  • Committer: Curtis Hovey
  • Date: 2011-06-02 21:33:22 UTC
  • mto: This revision was merged to the branch mainline in revision 13177.
  • Revision ID: curtis.hovey@canonical.com-20110602213322-jqtcf380m5pfp0rf
Update the property docstring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
234
234
 
235
235
    @property
236
236
    def related_component_groups(self):
237
 
        """Return all component groups and components
238
 
 
239
 
        This property was created for the Related components portlet in
240
 
        the bug tracker's page.
241
 
        """
 
237
        """All component groups and components."""
242
238
        return self.context.getAllRemoteComponentGroups()
243
239
 
 
240
 
244
241
BUG_TRACKER_ACTIVE_VOCABULARY = SimpleVocabulary.fromItems(
245
242
    [('On', True), ('Off', False)])
246
243