mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 23:17:17 +02:00
Fixed string conversions.
This commit is contained in:
parent
ee7e276315
commit
210325c794
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ class AccountDBManager(TypedObjectManager, UserManager):
|
|||
if callable(typeclass):
|
||||
typeclass = f"{typeclass.__module__}.{typeclass.__name__}"
|
||||
else:
|
||||
typeclass = fstr(typeclass)
|
||||
typeclass = str(typeclass)
|
||||
query["db_typeclass_path"] = typeclass
|
||||
if exact:
|
||||
matches = self.filter(**query)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue