mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 00:06:30 +01:00
Added unicode to list of permitted types for db_value in AttributeAdmin.
This commit is contained in:
parent
88b217c0b8
commit
b9ea41e713
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ class AttributeAdmin(ModelAdmin):
|
|||
"""
|
||||
search_fields = ('db_key', 'db_strvalue', 'db_value')
|
||||
list_display = ('db_key', 'db_strvalue', 'db_value')
|
||||
permitted_types = ('str', 'int', 'float', 'NoneType', 'bool')
|
||||
permitted_types = ('str', 'unicode', 'int', 'float', 'NoneType', 'bool')
|
||||
|
||||
fields = ('db_key', 'db_value', 'db_strvalue', 'db_category',
|
||||
'db_lock_storage', 'db_model', 'db_attrtype')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue