From: Jonathan Suever Date: Thu, 6 Apr 2017 19:52:10 +0000 (-0400) Subject: Fix of minor typo in the UnmappedInstanceError message X-Git-Tag: rel_1_1_10~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c8be2edd613890fa08c075f2c511cd942612a86;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix of minor typo in the UnmappedInstanceError message (cherry picked from commit 90c72c31a55337bef61cdd0cb75f5d128bcc34f9) --- diff --git a/lib/sqlalchemy/orm/exc.py b/lib/sqlalchemy/orm/exc.py index c13bb673bc..bd63a1b5a2 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: