Changeset 1029 in tailor


Ignore:
Timestamp:
12/03/05 11:04:29 (7 years ago)
Author:
R.Ghetta <birrachiara@…>
Hash name:
20051203100429-2c016-c954066cfb3f1bb2282e05a1210ec5506e4e2521
Message:

use lelit method to distinguish between 2.3 Set and 2.4 set

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/monotone.py

    r1028 r1029  
    2121from os import renames, access, F_OK 
    2222from string import whitespace 
    23 from sets import Set 
     23 
     24try: 
     25  set 
     26except NameError:  
     27  from sets import Set as set 
    2428 
    2529MONOTONERC = """\ 
     
    344348                "monotone diff returned status %d" % mtl.exit_status) 
    345349 
    346         implicit_dirs_add = Set() 
    347         dirs_add = Set() 
     350        implicit_dirs_add = set() 
     351        dirs_add = set() 
    348352 
    349353        # monotone diffs are prefixed by a section containing 
Note: See TracChangeset for help on using the changeset viewer.