Changeset 29 in tailor
- Timestamp:
- 06/22/04 17:18:58 (9 years ago)
- Hash name:
- 20040622151858-97f81-5ae374b2b97509c9face08a0d0b87c7abb9efcba
- File:
-
- 1 edited
-
vcpx/target.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/target.py
r28 r29 120 120 assert addentry, "Subclass should have specified something as addentry" 121 121 122 from os.path import split, walk 122 from os.path import split 123 from os import walk 123 124 124 125 basedir,wdir = split(root) 125 126 c = addentry(working_dir=basedir) 126 c(entry= wdir)127 c(entry=repr(wdir)) 127 128 128 129 for dir, subdirs, files in walk(root): … … 133 134 c = addentry(working_dir=dir) 134 135 for d in subdirs+files: 135 c(entry= d)136 c(entry=repr(d)) 136 137
Note: See TracChangeset
for help on using the changeset viewer.
