Changeset 754 in tailor


Ignore:
Timestamp:
09/04/05 00:06:27 (8 years ago)
Author:
lele@…
Hash name:
20050903220627-97f81-f612d737062093ff14a37250ac3a1002199a6669
Message:

Better public names for the methods

Location:
vcpx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vcpx/source.py

    r658 r754  
    233233        raise "%s should override this method" % self.__class__ 
    234234 
     235    def prepareSourceRepository(self): 
     236        """ 
     237        Do whatever is needed to setup or connect to the source 
     238        repository. 
     239        """ 
     240 
     241        self._prepareSourceRepository() 
     242 
    235243    def _prepareSourceRepository(self): 
    236244        """ 
  • vcpx/dualwd.py

    r753 r754  
    4040 
    4141        self.source = source_repo.workingDir() 
    42         self.source._prepareSourceRepository() 
    43  
    4442        self.target = target_repo.workingDir() 
    45         self.target._prepareTargetRepository() 
    4643 
    4744        sbdir = self.source.basedir 
     
    6562        IGNORED_METADIRS.extend(source_repo.EXTRA_METADIRS) 
    6663        IGNORED_METADIRS.extend(target_repo.EXTRA_METADIRS) 
     64 
     65        self.source.prepareSourceRepository() 
     66        self.target.prepareTargetRepository() 
    6767 
    6868        # UpdatableSourceWorkingDir 
Note: See TracChangeset for help on using the changeset viewer.