Merge "fix nits"

This commit is contained in:
Zuul 2021-03-16 09:18:29 +00:00 committed by Gerrit Code Review
commit adca21ef30
2 changed files with 5 additions and 5 deletions

View File

@ -859,7 +859,7 @@ Example:
This tooling aim to avoid to miss branching. This is a side effect of
the trailing projects, each series some of them are missed and remain
unbranched. We faced similar use case previously and that leaded us to
unbranched. We faced similar use case previously and that led us to
issues during releasing on stable branches.

View File

@ -28,7 +28,7 @@ def em():
def maintained():
series = series_status.SeriesStatus.from_directory(ROOT_DIR)
for serie in series:
if series.get(serie).is_maintained:
if serie != 'independent':
print(serie)
for current_series in series:
if series.get(current_series).is_maintained:
if current_series != 'independent':
print(current_series)