From: Mike Bayer Date: Thu, 10 Nov 2005 02:38:27 +0000 (+0000) Subject: docstring maintenance X-Git-Tag: rel_0_1_0~360 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41955a20ee5a95ead06ddc82add2f780e4864e70;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git docstring maintenance --- diff --git a/lib/sqlalchemy/attributes.py b/lib/sqlalchemy/attributes.py index 97d54e174b..78245318c6 100644 --- a/lib/sqlalchemy/attributes.py +++ b/lib/sqlalchemy/attributes.py @@ -20,8 +20,9 @@ import sqlalchemy.util as util import weakref class SmartProperty(object): - """attaches AttributeManager functionality to the property accessors of a class. all instances - of the class will retrieve and modify their properties via an AttributeManager.""" + """attaches AttributeManager functionality to the property accessors of a class. all + instances of the class will retrieve and modify their properties via an + AttributeManager.""" def __init__(self, manager): self.manager = manager def attribute_registry(self):