~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/branch.py

  • Committer: Ian Booth
  • Date: 2011-08-23 07:07:36 UTC
  • mto: This revision was merged to the branch mainline in revision 13814.
  • Revision ID: ian.booth@canonical.com-20110823070736-ktkse1htkqlc5pp7
A small tweak

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
                raise BranchCannotBePrivate()
207
207
            if not private and not policy.canBranchesBePublic():
208
208
                raise BranchCannotBePublic()
209
 
        self._private = private
 
209
        self.private = private
210
210
 
211
211
    registrant = ForeignKey(
212
212
        dbName='registrant', foreignKey='Person',