mirror of
https://github.com/vale981/releases
synced 2025-03-05 17:51:42 -05:00
Tweak logic to fix regression re: backported keyword
This commit is contained in:
parent
f6c21096a0
commit
688bbd9134
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ class Issue(nodes.Element):
|
||||||
# and only exists for features to go into.
|
# and only exists for features to go into.
|
||||||
if bugfix_buckets:
|
if bugfix_buckets:
|
||||||
buckets.append('unreleased_bugfix')
|
buckets.append('unreleased_bugfix')
|
||||||
else:
|
if self.is_featurelike or self.backported:
|
||||||
buckets.append('unreleased_feature')
|
buckets.append('unreleased_feature')
|
||||||
# Now that we know which buckets are appropriate, add ourself to
|
# Now that we know which buckets are appropriate, add ourself to
|
||||||
# all of them. TODO: or just...do it above...instead...
|
# all of them. TODO: or just...do it above...instead...
|
||||||
|
|
Loading…
Add table
Reference in a new issue