Changeset 724 in tailor


Ignore:
Timestamp:
08/31/05 22:37:26 (8 years ago)
Author:
lele@…
Hash name:
20050831203726-97f81-e148764f81d849314806b9e70885cb418fa910d8
Message:

Allow a None METADIR

Location:
vcpx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vcpx/dualwd.py

    r696 r724  
    4949                               self.source.basedir == self.target.basedir 
    5050 
    51         IGNORED_METADIRS = [source_repo.METADIR, target_repo.METADIR] 
     51        IGNORED_METADIRS = filter(None, [source_repo.METADIR, 
     52                                         target_repo.METADIR]) 
    5253        IGNORED_METADIRS.extend(source_repo.EXTRA_METADIRS) 
    5354        IGNORED_METADIRS.extend(target_repo.EXTRA_METADIRS) 
  • vcpx/repository.py

    r702 r724  
    2121    Collector for the configuration of a single repository. 
    2222    """ 
     23    METADIR = None 
    2324    EXTRA_METADIRS = [] 
    2425 
Note: See TracChangeset for help on using the changeset viewer.