• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

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

allura


Commit MetaInfo

修訂c0bbe5058b34f34d7d2ad32b6a6f928b6ca061fd (tree)
時間2011-04-15 23:59:33
作者Dave Brondsema <dbrondsema@geek...>
CommiterJohn Hoffmann

Log Message

[#1946] remove invalid kwarg

Signed-off-by: Dave Brondsema <dbrondsema@geek.net>

Change Summary

差異

--- a/scripts/purge_project.py
+++ b/scripts/purge_project.py
@@ -44,12 +44,12 @@ def purge_project(project):
4444 # Purge the things directly related to the project
4545 cls.query.remove(
4646 dict(project_id=project._id),
47- multiple=True)
47+ )
4848 elif 'app_config_id' in mapper(cls).property_index:
4949 # ... and the things related to its apps
5050 cls.query.remove(
5151 dict(app_config_id={'$in':app_config_ids}),
52- multiple=True)
52+ )
5353 else:
5454 # Don't dump other things
5555 continue