Changeset 1028 in tailor


Ignore:
Timestamp:
12/03/05 07:59:32 (7 years ago)
Author:
R.Ghetta <birrachiara@…>
Hash name:
20051203065932-2c016-296b1a7fb055e7677dc15e53e368b7aaf660e0c6
Message:

set() built-in is available only on python-2.4 Use the sets module instead.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/monotone.py

    r1025 r1028  
    2121from os import renames, access, F_OK 
    2222from string import whitespace 
     23from sets import Set 
    2324 
    2425MONOTONERC = """\ 
     
    343344                "monotone diff returned status %d" % mtl.exit_status) 
    344345 
    345         implicit_dirs_add = set() 
    346         dirs_add = set() 
     346        implicit_dirs_add = Set() 
     347        dirs_add = Set() 
    347348 
    348349        # monotone diffs are prefixed by a section containing 
Note: See TracChangeset for help on using the changeset viewer.