Skip to content

Commit 51ab55f

Browse files
committed
Add legacy-leaf status to history updates
1 parent fae0d4a commit 51ab55f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/get-history.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"""
1212

1313
import subprocess
14-
import functools
1514
import tempfile
1615
import shutil
1716
import csv
@@ -56,7 +55,8 @@ def get_history_package_numbers(db, commit, date):
5655
"""
5756
prev_batch = []
5857
all_statuses = [
59-
"blocked", "py3-only", "dropped", "idle", "in-progress", "released", "mispackaged"]
58+
"blocked", "py3-only", "dropped", "idle", "in-progress",
59+
"released", "legacy-leaf", "mispackaged"]
6060

6161
columns = [tables.Package.status, func.count()]
6262
query = select(columns).select_from(tables.Package.__table__)

0 commit comments

Comments
 (0)