]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix of minor typo in the UnmappedInstanceError message
authorJonathan Suever <suever@gmail.com>
Thu, 6 Apr 2017 19:52:10 +0000 (15:52 -0400)
committerJonathan Suever <suever@gmail.com>
Thu, 6 Apr 2017 19:52:10 +0000 (15:52 -0400)
lib/sqlalchemy/orm/exc.py

index c13bb673bc255e2a865bb403be1d512e94c88431..bd63a1b5a244687f81427463e3ae133ab7d7e4a6 100644 (file)
@@ -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: