Changeset 1227 in tailor


Ignore:
Timestamp:
08/07/06 23:02:03 (7 years ago)
Author:
Tony Tung <tonytung@…>
Hash name:
20060807210203-3bb30-e36f4cfb8fcb433fb370f7ef70179715f0960568
Message:

Fix a bug in the CVS checkout mechanism
I had a cvs repository that yielded problems because a file that was
deleted on the first checkin of a branch (I'm not sure if the fact
that it was the first checkin is relevant, however) was not considered
applied.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/cvsps.py

    r1216 r1227  
    381381        from time import sleep 
    382382        from vcpx.repository.cvs import CvsEntries, compare_cvs_revs 
     383        from vcpx.changes import ChangesetEntry 
    383384 
    384385        if not self.repository.module: 
     
    475476                    if not applied: 
    476477                        break 
     478                elif m.action_kind == ChangesetEntry.DELETED: 
     479                    applied = True 
    477480            return applied 
    478481 
Note: See TracChangeset for help on using the changeset viewer.