Merge lp:~allenap/launchpad/localpackagediffs-filter-by-person-or-team-bug-798873-interface into lp:launchpad

Proposed by Gavin Panella
Status: Merged
Approved by: Gavin Panella
Approved revision: no longer in the source branch.
Merged at revision: 13556
Proposed branch: lp:~allenap/launchpad/localpackagediffs-filter-by-person-or-team-bug-798873-interface
Merge into: lp:launchpad
Diff against target: 22 lines (+5/-1)
1 file modified
lib/lp/registry/interfaces/distroseriesdifference.py (+5/-1)
To merge this branch: bzr merge lp:~allenap/launchpad/localpackagediffs-filter-by-person-or-team-bug-798873-interface
Reviewer Review Type Date Requested Status
Gavin Panella (community) Approve
Review via email: mp+69776@code.launchpad.net

Commit message

[r=allenap][bug=798873] Add changed_by to the interface declaration of getForDistroSeries().

Description of the change

I forgot to update getForDistroSeries in the interface when adding the changed_by parameter.

To post a comment you must log in.
Revision history for this message
Gavin Panella (allenap) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'lib/lp/registry/interfaces/distroseriesdifference.py'
--- lib/lp/registry/interfaces/distroseriesdifference.py 2011-07-27 08:13:18 +0000
+++ lib/lp/registry/interfaces/distroseriesdifference.py 2011-07-29 12:43:55 +0000
@@ -297,7 +297,8 @@
297 status=None,297 status=None,
298 child_version_higher=False,298 child_version_higher=False,
299 parent_series=None,299 parent_series=None,
300 packagesets=None):300 packagesets=None,
301 changed_by=None):
301 """Return differences for the derived distro series sorted by302 """Return differences for the derived distro series sorted by
302 package name.303 package name.
303304
@@ -321,6 +322,9 @@
321 parent series if this parameter is None.322 parent series if this parameter is None.
322 :type distro_series: `IDistroSeries`.323 :type distro_series: `IDistroSeries`.
323 :param packagesets: Optional iterable of `Packageset` to filter by.324 :param packagesets: Optional iterable of `Packageset` to filter by.
325 :param changed_by: An optional `Person` (an individual or a team) or a
326 collection of `Person`s. The results are limited to only those
327 changes made by the given people.
324 :return: A result set of `IDistroSeriesDifference`.328 :return: A result set of `IDistroSeriesDifference`.
325 """329 """
326330