Changeset 1242 in tailor for vcpx/repository/bzr.py


Ignore:
Timestamp:
08/16/06 00:06:22 (7 years ago)
Author:
lele@…
Hash name:
20060815220622-97f81-6bbdcb82a0095e21e2cd5b33cfe9b165f14086e4
Message:

Ignore involved metadirs with bazaar too

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/bzr.py

    r1239 r1242  
    326326 
    327327    def _prepareTargetRepository(self): 
     328        from bzrlib import version_info 
     329        from vcpx.dualwd import IGNORED_METADIRS 
     330 
    328331        if self._working_tree is None: 
    329332            self._working_tree = self.repository.create() 
     333 
     334        if version_info > (0,9): 
     335            from bzrlib.ignores import add_runtime_ignores 
     336            add_runtime_ignores(IGNORED_METADIRS) 
     337        else: 
     338            from bzrlib import DEFAULT_IGNORE 
     339            DEFAULT_IGNORE.extend(IGNORED_METADIRS) 
Note: See TracChangeset for help on using the changeset viewer.