--- a/appobject.py Thu Sep 29 14:07:37 2011 +0200
+++ b/appobject.py Thu Sep 29 14:47:04 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: