~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/factory.py

  • Committer: Guilherme Salgado
  • Date: 2010-04-28 15:11:56 UTC
  • mfrom: (10795 launchpad)
  • mto: This revision was merged to the branch mainline in revision 10969.
  • Revision ID: salgado@canonical.com-20100428151156-5cedwvi9b0f478mj
mergeĀ fromĀ mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
1671
1671
            description=description)
1672
1672
 
1673
1673
        if private:
1674
 
            archive.private = True
1675
 
            archive.buildd_secret = "sekrit"
 
1674
            naked_archive = removeSecurityProxy(archive)
 
1675
            naked_archive.private = True
 
1676
            naked_archive.buildd_secret = "sekrit"
1676
1677
 
1677
1678
        return archive
1678
1679