mirror of
https://github.com/vale981/releases
synced 2025-03-05 17:51:42 -05:00
Fix bug bug.
This commit is contained in:
parent
f5efca6763
commit
a62e8296df
1 changed files with 5 additions and 1 deletions
|
@ -113,7 +113,11 @@ class Issue(nodes.Element):
|
||||||
# TODO: probably leverage Issue subclasses for this eventually?
|
# TODO: probably leverage Issue subclasses for this eventually?
|
||||||
if self.is_buglike:
|
if self.is_buglike:
|
||||||
buckets.extend(bugfix_buckets)
|
buckets.extend(bugfix_buckets)
|
||||||
buckets.append('unreleased_bugfix')
|
# Don't put into JUST unreleased_bugfix; it implies that this
|
||||||
|
# major release/family hasn't actually seen any releases yet
|
||||||
|
# and only exists for features to go into.
|
||||||
|
if bugfix_buckets:
|
||||||
|
buckets.append('unreleased_bugfix')
|
||||||
else:
|
else:
|
||||||
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue