/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/weaverepo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-04-22 17:08:27 UTC
  • mfrom: (5107.3.8 new_branch_and_repo_hooks)
  • Revision ID: pqm@pqm.ubuntu.com-20100422170827-h0bb41yq5nkosu6t
(vila) Add 'post_repo_init', 'post_branch_init' and 'post_switch' hooks. (Marco Pantaleoni)

Show diffs side-by-side

added added

removed removed

Lines of Context:
302
302
                mode=a_bzrdir._get_file_mode())
303
303
        finally:
304
304
            control_files.unlock()
305
 
        return self.open(a_bzrdir, _found=True)
 
305
        repository = self.open(a_bzrdir, _found=True)
 
306
        self._run_post_repo_init_hooks(repository, a_bzrdir, shared)
 
307
        return repository
306
308
 
307
309
    def open(self, a_bzrdir, _found=False):
308
310
        """See RepositoryFormat.open()."""