another syntax error: person argument is not used and assigned to student

This commit is contained in:
Alfredo Deza
2011-03-16 09:57:34 -04:00
parent 47574b9ba9
commit 728b510a14

View File

@@ -67,7 +67,7 @@ Example
from mymodel import get_student_by_name
class StudentController(object):
def __init__(self, person):
def __init__(self, student):
self.student = student
@expose()