app/soc/modules/ghop/logic/cleaning.py
changeset 2861 17d5cfe85faf
parent 2860 ea9909161840
child 2884 2be8f6b8379e
equal deleted inserted replaced
2860:ea9909161840 2861:17d5cfe85faf
    72 
    72 
    73     mentors_list_str = cleaning.str2set(field_name)
    73     mentors_list_str = cleaning.str2set(field_name)
    74 
    74 
    75     filter = {
    75     filter = {
    76         'scope_path': self.cleaned_data.get('scope_path'),
    76         'scope_path': self.cleaned_data.get('scope_path'),
    77         'status': ['active']
    77         'status': 'active'
    78         }
    78         }
    79 
    79 
    80     mentors_list = []
    80     mentors_list = []
    81     for link_id in mentors_list_str:
    81     for link_id in mentors_list_str:
    82 
    82