allura
Revision | d97c52cff29bd611d09d32bce7c7631ff1e3cb2f (tree) |
---|---|
Zeit | 2012-03-24 00:46:00 |
Autor | Tim Van Steenburgh <tvansteenburgh@geek...> |
Commiter | Cory Johns |
[#3744] New ming needs a list instead of set.
Signed-off-by: Tim Van Steenburgh <tvansteenburgh@geek.net>
@@ -157,7 +157,7 @@ class Object(object): | ||
157 | 157 | |
158 | 158 | def trove_ids(orig, new_): |
159 | 159 | if new_ is None: return orig |
160 | - return set(t._id for t in list(new_)) | |
160 | + return list(set(t._id for t in list(new_))) | |
161 | 161 | |
162 | 162 | def create_project(p, nbhd, user, options): |
163 | 163 | worker_name = multiprocessing.current_process().name |