/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/walker/copy_in.py

  • Committer: Tim Marston
  • Date: 2014-04-05 22:29:08 UTC
  • Revision ID: tim@ed.am-20140405222908-3onggkfp5akpz21t
got symlink accept lists working; fixed some walker bugs

Show diffs side-by-side

added added

removed removed

21
21
 
22
22
from copy_base import CopyBaseWalker
23
23
import stdhome.the as the
 
24
from stdhome.file_matcher import FileMatcher
24
25
 
25
26
 
26
27
class CopyInWalker( CopyBaseWalker ):
37
38
                self.dst_dir = the.repo.full_dir
38
39
                self.walk_list = self.generate_walk_list( the.repo.full_dir )
39
40
 
40
 
                self.changed = list()
 
41
                self.accept_list = FileMatcher( the.config_file, 'symlink' )
41
42
 
42
43
 
43
44
        def print_op( self, rel_file, operation ):