• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

allura


Commit MetaInfo

Revisiond97c52cff29bd611d09d32bce7c7631ff1e3cb2f (tree)
Zeit2012-03-24 00:46:00
AutorTim Van Steenburgh <tvansteenburgh@geek...>
CommiterCory Johns

Log Message

[#3744] New ming needs a list instead of set.

Signed-off-by: Tim Van Steenburgh <tvansteenburgh@geek.net>

Ändern Zusammenfassung

Diff

--- a/scripts/project-import.py
+++ b/scripts/project-import.py
@@ -157,7 +157,7 @@ class Object(object):
157157
158158 def trove_ids(orig, new_):
159159 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_)))
161161
162162 def create_project(p, nbhd, user, options):
163163 worker_name = multiprocessing.current_process().name