Changeset 818 in tailor
- Timestamp:
- 09/18/05 15:55:52 (8 years ago)
- Hash name:
- 20050918135552-97f81-57694f191ba84724037bd2c52f5881f4a3208c6a
- File:
-
- 1 edited
-
vcpx/cvs.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/cvs.py
r817 r818 23 23 if not rev2: rev2 = '0' 24 24 25 # handle locked files by taking only the first part of the revision string26 # this is to handle gracefully lines like "1.1 locked" which were breaking the script before25 # handle locked files by taking only the first part of the 26 # revision string to handle gracefully lines like "1.1 locked" 27 27 rev1 = rev1.split(' ')[0] 28 28 rev2 = rev2.split(' ')[0] … … 82 82 """ 83 83 84 assert ' by ' in revision, "Simple revision found, expected 'timestamp by author'" 84 assert ' by ' in revision, \ 85 "Simple revision found, expected 'timestamp by author'" 85 86 return revision.split(' by ') 86 87
Note: See TracChangeset
for help on using the changeset viewer.
