From 862736b6299dfed8a5e768b15774880d4841b81c Mon Sep 17 00:00:00 2001 From: Yuming Zhu Date: Jun 27 2017 07:01:38 +0000 Subject: fix NoneType TypeError in deleteTag --- diff --git a/hub/kojihub.py b/hub/kojihub.py index 4fce02b..88b84ac 100644 --- a/hub/kojihub.py +++ b/hub/kojihub.py @@ -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)