--- a/app/soc/models/task.py Sat Oct 18 17:49:46 2008 +0000
+++ b/app/soc/models/task.py Sat Oct 18 21:54:13 2008 +0000
@@ -23,7 +23,6 @@
from google.appengine.ext import db
-from soc import models
from soc.models import base
import soc.models.proposal
@@ -48,7 +47,7 @@
#: Task is based. A Task may be based on only a single Proposal,
#: but a Proposal can be the foundation for multiple Tasks. The
#: back-reference in the Proposal model is a Query named 'tasks'.
- proposal = db.ReferenceProperty(reference_class=models.proposal.Proposal,
+ proposal = db.ReferenceProperty(reference_class=soc.models.proposal.Proposal,
required=True,
collection_name="tasks")