# HG changeset patch # User Pawel Solyga # Date 1232661760 0 # Node ID 275d2f457c5073d8d066c6f76a6fc1f77cde72a7 # Parent 70eb2493a346f093e48c0b25d60b69a6c90c923d Fix missing dots in soc.views.helper.decoratos module docstrings. Patch by: Pawel Solyga Review by: to-be-reviewed diff -r 70eb2493a346 -r 275d2f457c50 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'].