~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/model/distroseriesdifference.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-07-28 18:30:43 UTC
  • mfrom: (13543.2.2 bug-782210)
  • Revision ID: launchpad@pqm.canonical.com-20110728183043-gx13tmlw3hxgpwxp
[r=jcsackett][bug=782210] Add an option to search among "All
        packages" (and remove the option to search among "Ignored packages").

Show diffs side-by-side

added added

removed removed

Lines of Context:
439
439
        return store.add(diff)
440
440
 
441
441
    @staticmethod
442
 
    def getForDistroSeries(
443
 
        distro_series,
444
 
        difference_type=None,
445
 
        name_filter=None,
446
 
        status=None,
447
 
        child_version_higher=False,
448
 
        parent_series=None,
449
 
        packagesets=None,
450
 
        changed_by=None):
 
442
    def getForDistroSeries(distro_series, difference_type=None,
 
443
                           name_filter=None, status=None,
 
444
                           child_version_higher=False, parent_series=None,
 
445
                           packagesets=None, changed_by=None):
451
446
        """See `IDistroSeriesDifferenceSource`."""
452
447
        if difference_type is None:
453
448
            difference_type = DistroSeriesDifferenceType.DIFFERENT_VERSIONS