summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2c45e63)
raw | patch | inline | side by side (parent: 2c45e63)
author | stefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 4 Nov 2010 17:49:34 +0000 (17:49 +0000) | ||
committer | stefan <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 | patch | blob | history |
diff --git a/share/roundup/templates/devel/detectors/nosyreaction.py b/share/roundup/templates/devel/detectors/nosyreaction.py
index a1a1536f62996a48c7c95ed2881eccd85520bf91..b49d2fb8d0bc2c949a61a9bf33ce185df34bf598 100644 (file)
-import sets
+from roundup.anypy.sets_ import set
from roundup import roundupdb, hyperdb
'''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:
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: