fix NoneType TypeError in deleteTag
This commit is contained in:
parent
801e1662f4
commit
1be3a71f84
1 changed files with 1 additions and 1 deletions
|
|
@ -3137,7 +3137,7 @@ def _delete_tag(tagInfo):
|
|||
update.make_revoke()
|
||||
update.execute()
|
||||
|
||||
tag = get_tag(tagInfo)
|
||||
tag = get_tag(tagInfo, strict=True)
|
||||
tagID = tag['id']
|
||||
|
||||
_tagDelete('tag_config', tagID)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue