Fix missing dots in soc.views.helper.decoratos module docstrings.
authorPawel Solyga <Pawel.Solyga@gmail.com>
Thu, 22 Jan 2009 22:02:40 +0000
changeset 906 275d2f457c50
parent 905 70eb2493a346
child 907 3786030d5952
Fix missing dots in soc.views.helper.decoratos module docstrings. Patch by: Pawel Solyga Review by: to-be-reviewed
app/soc/views/helper/decorators.py
--- a/app/soc/views/helper/decorators.py	Thu Jan 22 22:01:16 2009 +0000
+++ b/app/soc/views/helper/decorators.py	Thu Jan 22 22:02:40 2009 +0000
@@ -58,7 +58,7 @@
 
 
 def merge_params(func):
-  """Decorator that merges 'params' with self._params
+  """Decorator that merges 'params' with self._params.
   """
 
   @wraps(func)
@@ -71,7 +71,7 @@
 
 
 def check_access(func):
-  """This decorator does access checks for the specified view method
+  """This decorator does access checks for the specified view method.
 
   The rights dictionary is extracted from 'params', or, if either 'params' or
   'rights' do not exist, from self._params['rights'].