# HG changeset patch # User Pawel Solyga # Date 1233412745 0 # Node ID 78e4ea7e71f9078807cb5810faf40eb638d41ab6 # Parent 1a6eec8222e9174824bc0c920c3dc76a5b38d27e Small changes in Mentor model (we don't inherit from Reviewer anymore since model inheritance is not supported in datastore). Patch by: Pawel Solyga Reviewed by: to-be-reviewed diff -r 1a6eec8222e9 -r 78e4ea7e71f9 app/soc/models/mentor.py --- a/app/soc/models/mentor.py Sat Jan 31 14:38:04 2009 +0000 +++ b/app/soc/models/mentor.py Sat Jan 31 14:39:05 2009 +0000 @@ -14,17 +14,17 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""This module contains the Reviewer Model.""" +"""This module contains the Organization Mentor Model.""" __authors__ = [ '"Todd Larsen" ', ] -import soc.models.reviewer +import soc.models.role -class Mentor(soc.models.reviewer.Reviewer): +class Mentor(soc.models.role.Role): """Organization Mentor. """ pass