Changeset 1637 in tailor
- Timestamp:
- 06/11/08 19:29:24 (5 years ago)
- Hash name:
- 20080611172924-7a6fb-be8911a488dfaaf6bd545cd8eb5d47279c62bca6
- File:
-
- 1 edited
-
vcpx/changes.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/changes.py
r1634 r1637 32 32 CONFLICT = 'CONFLICT' 33 33 34 old_name = None 35 old_revision = None 36 new_revision = None 37 action_kind = None 38 status = None 39 unidiff = None # This is the unidiff of this particular entry 40 is_directory = False # This usually makes sense only on ADDs and DELs 41 is_symlink = False 42 34 43 def __init__(self, name): 35 44 self.name = name 36 self.old_name = None37 self.old_revision = None38 self.new_revision = None39 self.action_kind = None40 self.status = None41 self.unidiff = None # This is the unidiff of this particular entry42 self.is_directory = False # This usually makes sense only on ADDs and DELs43 self.is_symlink = False44 45 45 46 def __str__(self):
Note: See TracChangeset
for help on using the changeset viewer.
