mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 07:46:30 +01:00
commit
d07ef9aa07
1 changed files with 2 additions and 2 deletions
|
|
@ -292,8 +292,8 @@ class TagHandler(object):
|
|||
for tagstr in make_iter(tag):
|
||||
if not tagstr:
|
||||
continue
|
||||
tagstr = tagstr.strip().lower()
|
||||
category = category.strip().lower() if category else category
|
||||
tagstr = str(tagstr).strip().lower()
|
||||
category = str(category).strip().lower() if category else category
|
||||
data = str(data) if data is not None else None
|
||||
# this will only create tag if no matches existed beforehand (it
|
||||
# will overload data on an existing tag since that is not
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue