~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-06-21 22:17:38 UTC
  • mfrom: (13228.4.8 set-ppa-private)
  • Revision ID: launchpad@pqm.canonical.com-20110621221738-l68s7zrnalblik8l
[r=jcsackett][bug=724740] Provides facility to set a PPA private via
        the API

Show diffs side-by-side

added added

removed removed

Lines of Context:
349
349
            Archive,
350
350
            Archive.distribution == self.distribution,
351
351
            Archive._enabled == True,
352
 
            Archive.private == False,
 
352
            Archive._private == False,
353
353
            SourcePackagePublishingHistory.archive == Archive.id,
354
354
            (SourcePackagePublishingHistory.status ==
355
355
                PackagePublishingStatus.PUBLISHED),