Changeset 1164 in tailor for vcpx/bzr.py
- Timestamp:
- 06/13/06 02:31:31 (7 years ago)
- Hash name:
- 20060613003131-97f81-749a246c8e1e55900c2d3f3bdd0a89dd7cf82168
- File:
-
- 1 edited
-
vcpx/bzr.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/bzr.py
r1162 r1164 18 18 from source import UpdatableSourceWorkingDir, ChangesetApplicationFailure 19 19 from target import SynchronizableTargetWorkingDir 20 from bzrlib.osutils import normpath 20 21 from bzrlib.bzrdir import BzrDir 21 22 from bzrlib.delta import compare_trees … … 164 165 165 166 for fn in names: 167 normfn = normpath(fn) 166 168 if (not inv.has_filename(fn) 167 and not fn in added168 and not parent_was_copied( fn)):169 and not normfn in added 170 and not parent_was_copied(normfn)): 169 171 fnames.append(fn) 170 172 else: … … 206 208 email = ''.join(email.split()) 207 209 210 # Normalize file names 211 if entries: 212 entries = [normpath(entry) for entry in entries] 213 208 214 revision_id = "%s-%s-%s" % (email, compact_date(timestamp), 209 215 hexlify(rand_bytes(8)))
Note: See TracChangeset
for help on using the changeset viewer.
