app/soc/logic/models/base.py
changeset 543 280a1ac6bcc1
parent 535 9045b8888772
child 565 b0c5d58f9d3e
--- a/app/soc/logic/models/base.py	Sat Nov 22 03:13:59 2008 +0000
+++ b/app/soc/logic/models/base.py	Sat Nov 22 07:57:00 2008 +0000
@@ -30,7 +30,7 @@
 from django.utils.translation import ugettext_lazy
 
 from soc.logic import dicts
-from soc.logic import out_of_band
+from soc.views import out_of_band
 
 
 class Error(Exception):
@@ -218,7 +218,7 @@
       * Entity for supplied fields
 
     Raises:
-      out_of_band.ErrorResponse if link ID is not false, but no entity
+      out_of_band.Error if link ID is not false, but no entity
       with the supplied link ID exists in the Datastore.
     """
 
@@ -245,7 +245,7 @@
 
 
     # else: fields were supplied, but there is no Entity that has it
-    raise out_of_band.ErrorResponse(msg, status=404)
+    raise out_of_band.Error(msg, status=404)
 
   def getKeyNameForFields(self, fields):
     """Return a Datastore key_name for a Entity from the specified fields.