Fixed GHOP Cleaning clean_mentors_list method from using query on list.
Somehow this fix was missing from the previous revision, bad HG.
--- a/app/soc/modules/ghop/logic/cleaning.py Fri Sep 04 22:42:47 2009 +0200
+++ b/app/soc/modules/ghop/logic/cleaning.py Fri Sep 04 22:51:23 2009 +0200
@@ -74,7 +74,7 @@
filter = {
'scope_path': self.cleaned_data.get('scope_path'),
- 'status': ['active']
+ 'status': 'active'
}
mentors_list = []