Fix of minor typo in the UnmappedInstanceError message

(cherry picked from commit 90c72c31a5)
This commit is contained in:
Jonathan Suever
2017-04-06 15:52:10 -04:00
committed by Mike Bayer
parent ad073bd168
commit 2c8be2edd6
+1 -1
View 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: