diff --git a/master/custom/builders.py b/master/custom/builders.py index 95f621f4..3a49a49b 100644 --- a/master/custom/builders.py +++ b/master/custom/builders.py @@ -108,7 +108,7 @@ def stability(self): def get_tier_from_tags(tags): # Get the first (highest) of the tier flags - tags = sorted(tags & {TIER_1, TIER_2, TIER_3}) + tags = sorted(set(tags) & {TIER_1, TIER_2, TIER_3}) if tags: return tags[0] return NO_TIER