Code

Fix warning.
authorstefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Nov 2010 17:49:34 +0000 (17:49 +0000)
committerstefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Nov 2010 17:49:34 +0000 (17:49 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4562 57a73879-2fb5-44c3-a270-3262357dd7e2

share/roundup/templates/devel/detectors/nosyreaction.py

index a1a1536f62996a48c7c95ed2881eccd85520bf91..b49d2fb8d0bc2c949a61a9bf33ce185df34bf598 100644 (file)
@@ -1,4 +1,4 @@
-import sets
+from roundup.anypy.sets_ import set
 
 from roundup import roundupdb, hyperdb
 
@@ -48,7 +48,7 @@ def updatenosy(db, cl, nodeid, newvalues):
     '''Update the nosy list for changes to the assignedto
     '''
     # nodeid will be None if this is a new node
-    current_nosy = sets.Set()
+    current_nosy = set()
     if nodeid is None:
         ok = ('new', 'yes')
     else:
@@ -68,7 +68,7 @@ def updatenosy(db, cl, nodeid, newvalues):
                 continue
             current_nosy.add(value)
 
-    new_nosy = sets.Set(current_nosy)
+    new_nosy = set(current_nosy)
 
     # add assignedto(s) to the nosy list
     if newvalues.has_key('assignedto') and newvalues['assignedto'] is not None: