Small changes in Mentor model (we don't inherit from Reviewer anymore since model inheritance is not supported in datastore).
authorPawel Solyga <Pawel.Solyga@gmail.com>
Sat, 31 Jan 2009 14:39:05 +0000 (2009-01-31)
changeset 1113 78e4ea7e71f9
parent 1112 1a6eec8222e9
child 1114 65c8d1bfe94b
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
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" <tlarsen@google.com>',
 ]
 
 
-import soc.models.reviewer
+import soc.models.role
 
 
-class Mentor(soc.models.reviewer.Reviewer):
+class Mentor(soc.models.role.Role):
   """Organization Mentor.
   """
   pass