Changeset 29 in tailor


Ignore:
Timestamp:
06/22/04 17:18:58 (9 years ago)
Author:
lele@…
Hash name:
20040622151858-97f81-5ae374b2b97509c9face08a0d0b87c7abb9efcba
Message:

Fixed the _initializeWorkingDir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/target.py

    r28 r29  
    120120        assert addentry, "Subclass should have specified something as addentry" 
    121121         
    122         from os.path import split, walk 
     122        from os.path import split 
     123        from os import walk 
    123124 
    124125        basedir,wdir = split(root) 
    125126        c = addentry(working_dir=basedir) 
    126         c(entry=wdir) 
     127        c(entry=repr(wdir)) 
    127128 
    128129        for dir, subdirs, files in walk(root): 
     
    133134            c = addentry(working_dir=dir) 
    134135            for d in subdirs+files: 
    135                 c(entry=d) 
     136                c(entry=repr(d)) 
    136137 
Note: See TracChangeset for help on using the changeset viewer.