appobject.py
branchstable
changeset 7879 9aae456abab5
parent 7815 2a164a9cf81c
child 7990 a673d1d9a738
--- a/appobject.py	Tue Sep 27 16:04:30 2011 +0200
+++ b/appobject.py	Wed Sep 28 09:27:42 2011 +0200
@@ -324,7 +324,7 @@
     selected according to a context (usually at least a request and a result
     set).
 
-    The following attributes should be set on concret appobject classes:
+    The following attributes should be set on concrete appobject classes:
 
     :attr:`__registry__`
       name of the registry for this object (string like 'views',
@@ -415,7 +415,7 @@
         appobject is returned without any transformation.
         """
         try: # XXX < 3.6 bw compat
-            pdefs = cls.property_defs
+            pdefs = cls.property_defs # pylint: disable=E1101
         except AttributeError:
             pdefs = getattr(cls, 'cw_property_defs', {})
         else: