Changeset 1634 in tailor
- Timestamp:
- 06/11/08 00:09:07 (5 years ago)
- Hash name:
- 20080610220907-97f81-cbf41a2717375a4778edc502cc2873e88ac24632
- File:
-
- 1 edited
-
vcpx/changes.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/changes.py
r1630 r1634 44 44 45 45 def __str__(self): 46 s = self.name + '(' + self.action_kind 46 entry_kind = [] 47 if self.is_directory: 48 entry_kind.append('DIR') 49 if self.is_symlink: 50 entry_kind.append('SYMLINK') 51 if entry_kind: 52 kind = '[' + ','.join(entry_kind) + ']' 53 else: 54 kind = '' 55 s = self.name + kind + '(' + self.action_kind 47 56 if self.action_kind == self.ADDED: 48 57 if self.new_revision: … … 58 67 else: 59 68 s += '??' 60 if self.is_directory:61 s += ', DIR'62 if self.is_symlink:63 s += ', SLNK'64 69 s += ')' 65 70 if isinstance(s, unicode):
Note: See TracChangeset
for help on using the changeset viewer.
