app/soc/logic/models/base.py
changeset 689 46db8c4bbffc
parent 679 77a286ff6667
child 723 69e5130e4a0a
--- a/app/soc/logic/models/base.py	Sat Dec 06 21:05:17 2008 +0000
+++ b/app/soc/logic/models/base.py	Sat Dec 06 21:27:47 2008 +0000
@@ -66,21 +66,21 @@
       self._skip_properties = []
 
   def getModel(self):
-    """Returns the model this logic class uses
+    """Returns the model this logic class uses.
     """
 
     return self._model
 
   def getScopeLogic(self):
-    """Returns the logic of the enclosing scope
+    """Returns the logic of the enclosing scope.
     """
 
     return self._scope_logic
 
   def getScopeDepth(self):
-    """Returns the scope depth for this entity
+    """Returns the scope depth for this entity.
 
-    Returns None if any of the parent scopes return None
+    Returns None if any of the parent scopes return None.
     """
 
     if not self._scope_logic:
@@ -270,7 +270,7 @@
     raise out_of_band.Error(msg, status=404)
 
   def getIfFields(self, fields):
-    """Like getFromFieldsOr404 but returns None if not all fields are set
+    """Like getFromFieldsOr404 but returns None if not all fields are set.
 
     Raises:
       out_of_band.Error if no User entity is found and all fields were set