/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/bzrdir.py

  • Committer: Marco Pantaleoni
  • Date: 2010-03-25 14:22:41 UTC
  • mto: This revision was merged to the branch mainline in revision 5174.
  • Revision ID: panta@elasticworld.org-20100325142241-vtl1hshva7uiz3ap
Applied suggestions from merge reviewer (John A Meinel):

- removed duplication of checks for presence of hooks.
- adapted to bazaar style guideline
- simplified test cases callback

Show diffs side-by-side

added added

removed removed

Lines of Context:
1359
1359
        :param bzrdir: The bzrdir for the repository
1360
1360
        :param shared: The repository is shared
1361
1361
        """
1362
 
        self.repository         = repository
1363
 
        self.format             = format
1364
 
        self.bzrdir             = a_bzrdir
1365
 
        self.shared             = shared
 
1362
        self.repository = repository
 
1363
        self.format = format
 
1364
        self.bzrdir = a_bzrdir
 
1365
        self.shared = shared
1366
1366
 
1367
1367
    def __eq__(self, other):
1368
1368
        return self.__dict__ == other.__dict__