# HG changeset patch # User Lennard de Rijk # Date 1253217942 -7200 # Node ID 8086f6562353c5fc88d1a95cf9a5cbac2a3a9e27 # Parent 996e64ba2db8ca7a2096f02e8fe5db5ff08a6285 Fixed error in mentor field cleaning, the list of mentors was never resolved. diff -r 996e64ba2db8 -r 8086f6562353 app/soc/modules/ghop/logic/cleaning.py --- a/app/soc/modules/ghop/logic/cleaning.py Thu Sep 17 21:59:30 2009 +0200 +++ b/app/soc/modules/ghop/logic/cleaning.py Thu Sep 17 22:05:42 2009 +0200 @@ -72,7 +72,7 @@ from soc.modules.ghop.logic.models.mentor import logic as ghop_mentor_logic - mentors_list_str = cleaning.str2set(field_name) + mentors_list_str = cleaning.str2set(field_name)(self) filter = { 'scope_path': self.cleaned_data.get('scope_path'),