allura
修訂 | c0bbe5058b34f34d7d2ad32b6a6f928b6ca061fd (tree) |
---|---|
時間 | 2011-04-15 23:59:33 |
作者 | Dave Brondsema <dbrondsema@geek...> |
Commiter | John Hoffmann |
[#1946] remove invalid kwarg
Signed-off-by: Dave Brondsema <dbrondsema@geek.net>
@@ -44,12 +44,12 @@ def purge_project(project): | ||
44 | 44 | # Purge the things directly related to the project |
45 | 45 | cls.query.remove( |
46 | 46 | dict(project_id=project._id), |
47 | - multiple=True) | |
47 | + ) | |
48 | 48 | elif 'app_config_id' in mapper(cls).property_index: |
49 | 49 | # ... and the things related to its apps |
50 | 50 | cls.query.remove( |
51 | 51 | dict(app_config_id={'$in':app_config_ids}), |
52 | - multiple=True) | |
52 | + ) | |
53 | 53 | else: |
54 | 54 | # Don't dump other things |
55 | 55 | continue |