From 90c72c31a55337bef61cdd0cb75f5d128bcc34f9 Mon Sep 17 00:00:00 2001 From: Jonathan Suever Date: Thu, 6 Apr 2017 15:52:10 -0400 Subject: [PATCH] Fix of minor typo in the UnmappedInstanceError message --- lib/sqlalchemy/orm/exc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.47.2