mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-28 03:26:01 -04:00
Fix of minor typo in the UnmappedInstanceError message
(cherry picked from commit 90c72c31a5)
This commit is contained in:
committed by
Mike Bayer
parent
ad073bd168
commit
2c8be2edd6
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user