Changeset 1029 in tailor
- Timestamp:
- 12/03/05 11:04:29 (7 years ago)
- Hash name:
- 20051203100429-2c016-c954066cfb3f1bb2282e05a1210ec5506e4e2521
- File:
-
- 1 edited
-
vcpx/monotone.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/monotone.py
r1028 r1029 21 21 from os import renames, access, F_OK 22 22 from string import whitespace 23 from sets import Set 23 24 try: 25 set 26 except NameError: 27 from sets import Set as set 24 28 25 29 MONOTONERC = """\ … … 344 348 "monotone diff returned status %d" % mtl.exit_status) 345 349 346 implicit_dirs_add = Set()347 dirs_add = Set()350 implicit_dirs_add = set() 351 dirs_add = set() 348 352 349 353 # monotone diffs are prefixed by a section containing
Note: See TracChangeset
for help on using the changeset viewer.
