diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-04-17 15:34:46 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-04-17 15:34:46 -0400 |
| commit | ae3ffcf4ea2c131c720a584c29ae66444d929b77 (patch) | |
| tree | 8ad3ecbdb555d543564ab7a4a546e1a652d7df73 /lib | |
| parent | c2834f9298ddf14c0177e862b344de9e526cdf35 (diff) | |
| parent | 90c72c31a55337bef61cdd0cb75f5d128bcc34f9 (diff) | |
| download | sqlalchemy-ae3ffcf4ea2c131c720a584c29ae66444d929b77.tar.gz | |
Merge branch 'UnmappedInstanceError_typo_fix' of https://github.com/suever/sqlalchemy
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sqlalchemy/orm/exc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/exc.py b/lib/sqlalchemy/orm/exc.py index c13bb673b..bd63a1b5a 100644 --- a/lib/sqlalchemy/orm/exc.py +++ b/lib/sqlalchemy/orm/exc.py @@ -71,7 +71,7 @@ class UnmappedInstanceError(UnmappedError): base.class_mapper(type(obj)) name = _safe_cls_name(type(obj)) msg = ("Class %r is mapped, but this instance lacks " - "instrumentation. This occurs when the instance" + "instrumentation. This occurs when the instance " "is created before sqlalchemy.orm.mapper(%s) " "was called." % (name, name)) except UnmappedClassError: |
